132k views
3 votes
Write a recursive equation for a sequence that starts with 5 and as 3 to get the next term every time

1 Answer

5 votes

Answer:

Explanation:

The recursive equation for this sequence is:

a(1) = 5

a(n) = a(n-1) + 3 for n > 1

This equation says that the first term in the sequence is 5, and each subsequent term is found by adding 3 to the previous term.

User Shirin
by
8.5k points