Given sequence = 1,1,2,3,5,8,13
lets first break the code of sequence
Every number is the sum of its previous two consecutive numbers, starting from 1.
Lets check-
Starting with given 1,
next number is 1 and its calculated as;
1 = 1 + 0 (since we don't have previous of 1 ) = 1
next number is 2 and its calculated as;
2 = 1 + 1 (previous two number)
next number is 3 and its calculated as;
3 = 2 + 1 (previous two number)
next number is 5 and its calculated as;
5 = 3 + 2 (previous two number)
next number is 8 and its calculated as;
8 = 3 + 2 (previous two number)
next number is 13 and its calculated as;
13 = 3 + 2 (previous two number)
next number is 21 and its calculated as;
21 = 13 + 8 (previous two number) .....Answer
|