Let $b(n)$ be the binary partition function of $n$, i.e., the number of partition of $n$ for which all parts are the powers of two, and have properties $b(2n+1)=b(2n)$ and $b(2n)=b(n)+b(2n-2)$ for all positive integer $n$.
Prove that $b(n) \equiv 0 \pmod 2$ for all $n \ge 2$.
Proof: Clearly, $b(2)=b(3)=2 \equiv 0 \pmod 2$. Now, let $b(m) \equiv 0 \pmod 2$ for all $m \in [2,2n-1]$ where $n \ge 2.$ Then $$b(2n+1)=b(2n)=b(n)+b(2n-2) \equiv 0 \pmod 2,$$ since $n,2n-2 \in [2,2n-1]$. Now, extend the interval to be $[2,2n+1]$ and the result follows by induction.
My question is, how to solve the induction? Any ideas? Thanks in advanced.