Following the advice of
@Harry_the_cat posts above, I did the following work (I've never done an inductive proof within an inductive proof before and found this very interesting, thanks 'Arry

)
Prove f(n) = n^5 - n is divisible by 240 for odd n
Base case f(1) = 0 which is divisible by 240
Assume true for n=k...
k5−k is divisible by 240 (1)
is it true for n=k+2?
(k+2)5−(k+2)
=(k5−k)+10k4+40k3+80k2+80k+30
true if
10k4+40k3+80k2+80k+30 is divisible by 240, by using (1) to eliminate the red
=10(k4+4k3+8k2+8k+3) see next proof by induction
Prove
g(n)=n4+4n3+8n2+8n+3 is divisible by 24 for odd n
Base case g(1) = 24 which is divisible by 24
Assume true for n=k
k4+4k3+8k2+8k+3 is divisible by 24 (2)
is it true for n=k+2?
(k+2)4+4(k+2)3+8(k+2)2+8(k+2)+3
=k4+12k3+56k2+120k+99
=(k4+4k3+8k2+8k+3)+8k3+48k2+112k+96
true if
8k3+48k2+112k+96 is divisible by 24, by using (2) to eliminate the red
=8(k3+6k2+14k+12) see next proof by induction
Prove
n3+6n2+14n+12 is divisible by 3
=n3+14n+3(2n2+4)
Only need to prove that
h(n)=n3+14n is divisible by 3 for odd n
Base case h(1) = 15 which is divisible by 3
Assume true for n=k
k3+14k is divisible by 3 (3)
is it true for n=k+2?
(k+2)3+14∗(k+2)
=k3+6k2+26k+36
=(k3+14k)+6k2+12k+36
true if
6k2+12k+36 is divisible by 3, using (3) to eliminate the red
=6k2+12k+36
=6(k2+2k+6) divisible by 3
All the base cases and inductive steps above have been proved correct. Therefore by mathematical induction the original statement
f(n)=n5−n is divisible by 240 is true for every positive odd natural number n.