The task is to prove that the sum of three subsequent cubic numbers is divisible by 9. My approach looks like this:
$n^3+(n+1)^3+(n+2)^3 = 9M$
Proof that the equation is true for $n=1$
$1^3+2^3+3^3 = 1+8+27 = 36;$
$ 36/9 = 4$
Assume that the equation is true for $n<=k$
$k^3+(k+1)^3+(k+2)^3 = 3k^3+9k^2+15k+9$
Show that the equation is true for $n = k+1$
$(k+1)^3+(k+2)^3+(k+3)^3=3k^3+18k^3+42k+36$
And this is the point where I am stuck. With a simpler formula I would simply replace the $k$ with $9M $ but how can you do it in this case?