an = 2an-1 where a1 = 1
tells me your sequence starts with 1, and each new term is double the
one before it, that is .....
1, 2, 4, 8, ....
A recursive function is defined by: an = 2a n - 1 with a0 = 1
Find the value of a3
2 answers
Thank you