Answer:
The first five terms of the recursive sequence are:
an = 3an-1 + 3
a1 = 9
a2 = 3a1 + 3 = 3 * 9 + 3 = 30
a3 = 3a2 + 3 = 3 * 30 + 3 = 93
a4 = 3a3 + 3 = 3 * 93 + 3 = 282
a5 = 3a4 + 3 = 3 * 282 + 3 = 849
So the first five terms are: 9, 30, 93, 282, 849.
Explanation: