We want to write a for the given .
6,1,7,8,15,23,…
To do so we need to analyze how the consecutive are related. Let's find the sum between each pair of consecutive terms.
a2+a1a3+a2a4+a3a5+a4⋮====1+67+18+715+8⋮====781523⋮
1111an−1+an−2=an1111
|
We can see above that the sum of the consecutive terms equals the next term. Therefore, to obtain the value of the term in the
nth position, we need to
add two previous terms. With this information and knowing that the first term equals
6 and the second term equals
1, we can write the recursive formula.
a1=6, a2=1 and an=an−1+an−2
We will write the next
2 terms of a now.
⋮a6+a5a7+a6==⋮23+1538+23==⋮3861