To express the recursively defined sequence using function notation, we need to align the definitions correctly.
The original definition is:
- \( a_1 = -3 \)
- \( a_n = a_{n-1} + 4 \)
In function notation, we can denote the sequence as \( f(n) \) where:
- \( f(1) = -3 \)
- \( f(n) = f(n - 1) + 4 \)
Thus, the correct option that reflects this definition is:
f(1)=−3 ; f(n)=f(n−1)+4
This notation accurately represents the defined recursive relationship.