Find the first five terms of the given recursively defined sequence.

an = 3an − 1 + 6 and a1 = 1
a1=
a2=
a3=
a4=
a5=

2 answers

I am sure you meant:

an = 3a(n-1) + 6

in this notation , given any an
an-1 would be the previous term.
so if a1 = 1
then a2 = 3a1 + 6
= 3(1) + 6 = 9
a3 = 3a2 + 6
= 3(9) + 6 = 33

continue building them that way.
how did you get 9? on a3?