To represent the number of members in the environmental organization as a recursive sequence, we can define it as follows:
Let \( a_n \) be the number of members after \( n \) days.
-
Initial condition: On the first day (when \( n = 0 \)), the number of members is 25. So: \[ a_0 = 25 \]
-
Recursive relation: Each day, the organization adds 20 new members. Thus, for each subsequent day: \[ a_n = a_{n-1} + 20 \quad \text{for } n \geq 1 \]
Combining these two parts, the recursive sequence that shows the number of members after \( n \) days is:
\[ \begin{align*} a_0 &= 25, \ a_n &= a_{n-1} + 20 \quad \text{for } n \geq 1. \end{align*} \]