112358 = 112,358
fibonacci
The sequence 112358 is called the Fibonacci sequence. This is a series of numbers where each number after the first two is the sum of the two preceding ones.
The Fibonacci Sequence
13 & 21
1+1 = 2 1+2 = 3 2+3 = 5 3+5 = 8 5+8 = 13
Not enoug information is given to provide an answer.
The sequence 112358 follows the Fibonacci pattern, where each number is the sum of the two preceding numbers. Starting with 1 and 1, the next numbers are calculated as follows: 1+1=2, 1+2=3, 2+3=5, resulting in the sequence 1, 1, 2, 3, 5, 8. This pattern continues indefinitely.
There are many possible answers. One obvious one is 13, the next number in the Fibonacci Sequence that yields the golden mean.
#include<stdlib.h> #include<conio.h> #include<stdio.h> void main (void) { clrscr(); int i; int a[10]; a[0]=0; a[1]=1; printf("First 10 Fibonacci numbers are :\n"); printf("%d\n%d\n",a[0],a[1]); for(i=2;i<10;i++) { a[i]=a[i-1]+a[i-2]; printf("%d\n",a[i]); } getch(); }