I recently came across the following:
Fix an odd $k\in\mathbb{N}$. Then for all even $n\in\mathbb{N}, \binom{n}k \text{ is even.}$
I'd like to complete my attempted proof by induction (see below), although other arguments are equally welcomed.
Proof attempt
Let $k\in\mathbb{N}$ with $k$ odd.
$\underline{\text{Base Case:}}$ [n=2] Then $\binom{n}k=\binom{2}k$. If $k=1$, then $\binom{2}1=2$ is even. If $k>1$, then $\binom{2}k=0$, which is also even.
$\underline{\text{Induct:}}$ Let $n\in\mathbb{N}$ be even. Assume that $\binom{n}k$ is also even. Say, $\binom{n}k=2l$ for some $l\in\mathbb{N}$. We'll show $\binom{n+2}k$ is even. Consider,
$$ \begin{aligned} \binom{n+2}k&=\frac{(n+2)!}{k![(n+2)-k]!}\\[10pt] &=\frac{(n+2)(n+1)n}{k![(n-k)+2][(n-k)+1](n-k)!}\\[10pt] &=\frac{(n+2)(n+1)}{[(n+2)-k][(n+1)-k]}\cdot\frac{n!}{k!(n-k)!}\\[10pt] &=\frac{(n+2)(n+1)}{[(n+2)-k][(n+1)-k]}\cdot 2l \end{aligned} $$
I suppose if one can show that $\frac{(n+2)(n+1)}{[(n+2)-k][(n+1)-k]}$ is a natural number, they'd be done. However, I'm unsure how to do this, and I'm not entirely convinced it's always true. Suppose $n=6$ and $k=3$, then: $$\frac{(n+2)(n+1)}{[(n+2)-k][(n+1)-k]}=\frac{8\cdot 7}{5\cdot 4}=\frac{14}{5}$$ which is certainly not a natural number. This leads me to believe there's an error in my reasoning, but I cannot see where I went wrong.