Recursive Formula: an = an-1 + d
Explicit Formula: an = a1 + d(n - 1)
25, 35, 45, 55, ...
Recursive Formula: f(n) = f(n - 1) + 10, f(1) = 25
Explicit Formula: f(n) = f(1) + 10(n - 1) = 25 + 10n - 10 = 10n + 15
f(20) = 10(20) + 15 = 200 + 15 = 215
Use the explicit formula to find the 20th term of the sequence. The value of the 20th term is 215.