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...
\(\displaystyle k^5 - k\)  is divisible by 240   (1)
is it true for n=k+2?
\(\displaystyle (k+2)^5 - (k + 2)\)
\(\displaystyle = \color{red}(k^5 - k)\color{black} + 10k^4 + 40k^3 + 80k^2 + 80k + 30\)
true if \(\displaystyle 10k^4 + 40k^3 + 80k^2 + 80k + 30\) is divisible by 240, by using (1) to eliminate the red
\(\displaystyle = 10( k^4 + 4k^3 + 8k^2 + 8k + 3 )\) see next proof by induction
Prove \(\displaystyle g(n) = n^4 + 4n^3 + 8n^2 + 8n + 3\) is divisible by 24 for odd n
Base case g(1) = 24 which is divisible by 24
Assume true for n=k
  \(\displaystyle k^4 + 4k^3 + 8k^2 + 8k + 3\)  is divisible by 24  (2)
is it true for n=k+2?
\(\displaystyle (k+2)^4 + 4(k+2)^3 + 8(k+2)^2 + 8(k+2) + 3\)
\(\displaystyle = k^4 + 12k^3 + 56k^2 + 120k + 99\)
\(\displaystyle = \color{red}(k^4 + 4k^3 + 8k^2 + 8k + 3)\color{black} + 8k^3 + 48k^2 + 112k + 96\)
true if \(\displaystyle 8k^3 + 48k^2 + 112k + 96\) is divisible by 24, by using (2) to eliminate the red
\(\displaystyle = 8( k^3 + 6k^2 + 14k + 12 )\) see next proof by induction
Prove \(\displaystyle n^3 + 6n^2 + 14n + 12\) is divisible by 3
 \(\displaystyle    = n^3 + 14n + 3(2n^2 + 4)\)
Only need to prove that \(\displaystyle h(n) = n^3 + 14n\) is divisible by 3 for odd n
Base case h(1) = 15 which is divisible by 3
Assume true for n=k
 \(\displaystyle k^3 + 14k \) is divisible by 3  (3)
is it true for n=k+2?
\(\displaystyle (k+2)^3 + 14*(k+2)\)
\(\displaystyle = k^3 + 6k^2 + 26k + 36\)
\(\displaystyle = \color{red}(k^3 + 14k)\color{black} + 6k^2 + 12k + 36\)
true if \(\displaystyle 6k^2 + 12k + 36\) is divisible by 3, using (3) to eliminate the red
\(\displaystyle = 6k^2 + 12k + 36\)
\(\displaystyle = 6( k^2 + 2k + 6 )\) divisible by 3
All the base cases and inductive steps above have been proved correct. Therefore by mathematical induction the original statement \(\displaystyle f(n) = n^5 - n\) is divisible by 240 is true for every positive odd natural number n.