f(1) = 2. This means "The first term is two"
f(n) is calculated by taking the previous term (the one BEFORE f(n)), and multiplying by two.
f(n - 1) means "the term before the nth term"
This is how we write the recursive formula: f(n) = 2 * f(n - 1) This shows how to get the nth term if you know the term before it.
The Explicit formula shows that we are repeatedly multiplying by two, so we use an exponent. We don't need to know the term before, we see that the tenth term is two to the tenth power, the hundredth term is two to the hundredth power, etc.
The exponent matches the n.
f(n) = 2^n