I have to show that $n^4+ 6n^3 + 11n^2+6n$ is divisible by 24 for every natural number, n, so I decided to show that this polynomial is divisible by 8 and 3, but I'm having trouble showing that it is divisible by 8.
Divisible by 3: $$n^4+ 6n^3 + 11n^2+6n \equiv n^4+2n^2 \pmod3 $$$$n^4+2n^2 = n^2(n^2+2)=n^2(n^2-1)=n^2(n+1)(n-1)\equiv 0 \pmod3$$
Divisble by 8: $$n^4+ 6n^3 + 11n^2+6n \equiv n(n^3-2n^2-5n-2) \pmod8 $$$$n(n^3-2n^2-5n-2) = n(n+1)(n^2-3n-2) = n(n+1)(n^2+5n+6) = n(n+1)(n+2)(n+3) = ??? \pmod8$$
So it seems that the polynomial has to be divisible by four, but I'm not sure how to show that it has to be divisible by two one more time to show that it's divisible by 8.
Any other approaches to solving the problem are welcome, as I'm preparing for an exam and would appreciate having multiple ways to tackle the problem. I think this problem was meant to be an exercise in proof by induction, but the other approach seemed more approachable.