sort of messy:
1^5 + 1^3 + 2 = 4 is divisible by 4
so the proposition is true for n = 1
now to prove that if the proposition is true for n=k then it is true for n = k+1
the induction hypothesis is therefore k^5 +k^3 + 2k =4a for some integer a.
(k+1)^5 + (k+1)^3 + 2(k+1)
= k^5 + 5k^4 +11k^3 + 13k^2 + 10k + 4
= (k^5 + k^3 + 2k) + 4k^4 + 8k^3 + 12k^2 +8k + 4 + k^4 + 2k^3 +k^2
= 4(a + k^4 + 2k^3 + 3k^2 + 2k + 1) + k^2(k+1)^2
= 4b +k^2(k+1)^2 for some integer b
now, one and only one of k or k+1 must be even, and the square of even numbers must be multiples of 4 so k^2(k+1)^2 must be a multiple of 4.
above
=4b + 4c for some c
= 4(b+c) which is divisible by 4
so the proposition being true for k implies it's true for n=k+1
by the principle of mathematical induction, it's true for n E {1,2,...}
I WANT TO USE MOD ARITHMETIC