Working on solving basic proofs using mathematical induction. Please see proof below. My solution took a bit of creativity (at least from my point of view). I'm hoping someone can validate this answer and provide some insights for how I may arrive at the inductive step more quickly... it took me a bit of time on scratch paper to develop a relationship between $(a^{2n+1}+b^{2n+1})$ and $(a^{2(n+1)+1}+b^{2(n+1)+1})$.
Prove that for all integers $a$ and $b$ and all $n \in \mathbb{N}, (a+b)\vert (a^{2n+1}+b^{2n+1})$.
$Proof.$ We will prove this via mathematical induction.
Base Case. Assume $a,b \in \mathbb{Z}$ and $a\neq -b$. Let $n=0$ and observe that $(a+b)\vert (a+b)$ and thus our proposition holds for $n=0$.
Inductive Step. Assume our proposition is true for $n= k$ where $k \ge 0$ and let $a,b \in \mathbb{Z}$ and $a\neq -b.$ Since $(a+b)\vert (a^{2k+1}+b^{2k+1})$ we know that $\exists c \in\mathbb{Z},(a^{2k+1}+b^{2k+1})=(a+b)c$. But then
$$\begin{align} (a^{2k+3}+b^{2k+3})&=a^2(a^{2k+1}+b^{2k+1})-b^{2k+1}(a^2-b^2)\\ &=a^2(a+b)c-b^{2k+1}(a+b)(a-b)\\ &=(a+b)(a^2c-b^{2k+1}(a-b)).\\ \end{align}$$
Thus $(a^{2k+3}+b^{2k+3})=(a+b)d$ where $d=(a^2c-b^{2k+1}(a-b))\in\mathbb{Z}$ which implies $(a+b) \vert (a^{2k+3}+b^{2k+3}$).
It follows by mathematical induction that $\forall a,b \in \mathbb{Z} \land \forall n \in \mathbb{N}, (a+b)\vert (a^{2n+1}+b^{2n+1})$. $\Box$
I probably wouldn't have thought of setting $(a^{2k+1}+b^{2k+1})=(a+b)c$, and that drastically simplifies the argument I would have made. Additionally:
$$a^{2k+1}+b^{2k+1}=(a+b) \left(\sum_{i=0}^{2k}(-1)^{i}a^{2k-i}b^{i}\right)$$
If you wish for an explicit value for $c$.
– Giuseppe Dec 15 '16 at 17:01