
Mike D. answered 08/04/20
Effective, patient, empathic, math and science tutor
Joseph
Mark is correct above but for the recursive formulation (line 2) you also need a1=25.
I will give a solution in terms of the notation used in the question also.
Recursive rule : f(1) = first term = 25.
Obviously to go from one term to the next we add 10. So to go from (n-1)st term to the nth we add 10.
So f(1) = 25, f(n) = f(n-1) + 10.
Explicit.
f(n) = f(1) + d (n-1). d = 10 here, f(1) = 25, so 25 + d (n-1).
To find f(20) you just substitute n=20 into the explicit formulation.
Mike