Can anyone give an example of recursive method, explicit method using the variable n?

f(1) = 1

f(n) = f(n-1) + 2

f(n) = 2n-1