Mark M. answered 01/19/16
Tutor
4.9
(954)
Retired math prof. Very extensive Precalculus tutoring experience.
This is the start of the famous Fibonacci Sequence. Each term after the first two is found by adding the two preceding terms.
2 = 1+1
3 = 1+2
5 = 2+3
8 = 3+5 etc
We can define the sequence recursively as follows:
a1 = 1 a2 = 1
an = an-1 + an-2 , for n = 3, 4, 5, ...