21.5k views
0 votes
A sequence has its first term equal to 3, and each term of the sequence is obtained by adding 5 to the previous term. If f(n) represents the nth term of the sequence, which of the recursive function best defines this sequence?

User ZiviMagic
by
7.4k points

1 Answer

3 votes
f(1) = 3
f(2) = 3 + 5 = 8
f(3) = 8 + 5 = 13

f(n) = 5(n - 1) + 3

f(n) = 5n - 2
User Pnschofield
by
8.6k points

No related questions found