83.2k views
2 votes
Consider the sequence:
2, 5, 8, 11, 14, 17,.......
Write a recursive definition:

User Elynn
by
6.1k points

1 Answer

4 votes

Answer:

f(1) = 2

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

Explanation:

hopefully this helps.

User Michasaucer
by
6.3k points