Let Σ(k) = 1 + 3 + 5 + ... + (2k+1) be the sum of all odd natural numbers from 1 up to and including (2k+1). Formulate a recursive definition for Σ including both the base case Σ(0) = 1 and a (k+1)th case.
Base case: Σ(0) = 1 ⇒ 0 + 1 ⇒ 2(0) + 1
so the base case holds.
How do I formulate a recursive definition for the (k+1)th case?
"How do I formulate a recursive definition for the $(k+1)^\text{th}$ case?"
You do it by writing $f_{k+1}$ in terms of $f_k$:
$$f_k = \sum_{n=0}^{k} 2n+1$$ $$f_{k + 1} = \text{???}$$
Figure out the "???"
$$f_{k+1} = g(f_k) \tag{A}$$
Now you want to figure out $g$, because $g$ is what relates $f_k$ and $f_{k+1}$. So use the known formulas for $f_k$ and $f_{k+1}$ to figure out what $g$ should be. If you need more info here is a hint:
If you really need to see the final answer: