Applying the principle of mathematical Induction, prove that $n(n+1)(2n+1)$ is divisible by $6$ for all $n\in N$
My Attempt Let $$P(n)=n(n+1)(2n+1)$$ When $n=1$, then $$P(1)=6$$ Which is divisible by $6$. Hence $P(1)$ is true. Suppose $P(k)$ is true for some $K\in N$ $$P(k)=k(k+1)(2k+1)$$ We have to prove that $P(k+1)$ is true whenever $P(k)$ is true. Thus, $$P(k+1)=(k+1)(k+2)(2k+3)$$ $$=(k+1)(k+2)(2k+1+2)$$
How do I complete the proof?