Write the first five terms of the sequence defined recursive
Write the first five terms of the sequence defined recursively a1= 39, ak + 1= ak-8
Solution
a1=39
ak+1=ak-8
when k=2
a2=a1-8=39-8=31
when k=2
a3=a2-8=31-8=23
when k=3
a3=a2-8=15
when k=4
a4=a3-8=7
when k=5
a5=a4-8=-1
39,31,23,15,7,-1
