Fibonacci sequnce has this pattern:

1,1,2,3,5,8,13,21,34,55,......
each number is achieved by adding the previous number to the current number (1+1=2, 2+1=3, 3+2=5,....)

List the first eight terms of the sequence formed by finding the differences of successive terms.

1 answer

1-1 = 0
2-1 = 1
3-2 = 1
5-3 = 2
8-5 = 3
13-8= 5
21-13=8
34-21=13 looks like it is going to do the Fibonacci sequence again