Question 55720
Write a recursive formula that generates the terms of the following:
1,3,9,27,... 
---------
a(n) is the nth term.
a(n+1) is the (n+1)th term.
a(n+1)= 3(a(n))
That is the recursive equation.
Another way to write it would be:
a(n) = 3* a(n-1)
Cheers,
Stan H.