I have the solution for this but I get lost at the end, here's what I have so far.
basis $n = 0$; $9 \mid 0^3 + (0 + 1)^3 + (0 + 2)^2 ?$
$9 \mid 1 + 8$ = true
Induction: Assume $n^3 + (n + 1)^3 + (n + 2)^3 = k * 9$ // Why set it equal to $k * 9$? I know it works but why not just make the assumption => $n^3 + (n + 1)^3 + (n + 2)^3$ for some $n = k \ge 0$
Then, //and here's where I get lost
$(n + 1)^3 + (n + 2) + (n + 3)^3 = k * 9 + [(n + 3)^3 - n^3] = 9 (k + n^2 + 3n + 3)$
.
I've done similar examples but none like this. What am I not seeing?