55095512
A sequence is defined recursively by \(a_1=7\) and \(a_n=a_{n-1}+4\) for \(n\ge2\).
a) Write the first four terms.
b) Write an explicit formula for \(a_n\).
Hints
- Apply the recursive update repeatedly to generate the opening terms.
- Count how many common-difference steps separate term \(1\) from term \(n\).
Solution
a) Starting from \(7\) and adding \(4\) each time gives \(7,11,15,19\).
b) From the first term to the \(n\)th term there are \(n-1\) additions of \(4\). Therefore
\(a_n=7+4(n-1)=4n+3\).
Answer
a) \(7,11,15,19\).
b) \(a_n=4n+3\).
