Which pattern does this sequence follow: 0,1,1,2,3,5,8…?
The correct option is C: Fibonacci number pattern
The Fibonacci sequence is a pattern of numbers where a number is found by adding up the two numbers before it. Starting with 0 and 1, the sequence goes 0,1,1,2,3,5,8,13,21,34, and so forth.
The given pattern is 0,1,1,2,3,5,8…
0+1=1
1+1=2
1+2=3
2+3=5
3+5=8 and so on.
We can see that the next term is coming when we add the previous two terms. Hence, it is a Fibonacci sequence.