Given f(1) = 1 and f(n) = f(n-1) + 2. Find f(7)

1 answer

arithmetic progression
a = 1
d = 2

Tn = a + (n-1) d
T7 = 1 + 6 * 2
= 13