Final answer:
The recursive function for the arithmetic sequence 81, 85, 89, 93, 97 is defined by the formula a_n = a_{n-1} + 4, for n > 1, with the initial condition a_1 = 81. The sequence has a common difference of 4.
Step-by-step explanation:
To write a recursive function for the given sequence 81, 85, 89, 93, 97, we must first identify the pattern. The sequence increases by 4 each time, which is a common difference in arithmetic sequences. With this information, we can establish the recursive formula.
The recursive formula for an arithmetic sequence is given by:
a_n = a_{n-1} + d
where:
- a_n is the nth term of the sequence,
- a_{n-1} is the previous term,
- d is the common difference between the terms (which in this case is 4).
For the initial condition:
a_1 = 81
Therefore, the recursive function for the given sequence is:
a_n = a_{n-1} + 4, for n > 1, with a_1 = 81