What is the sum of all natural numbers 'n' strictly smaller than 25 such that the expression
is not divisible by 5.
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
There is no need to calculate till the 24th power. Actually there is a pattern to solve this question.
If you find the solution till the 8th power you will know what I want to say.
1 1 + 2 1 + 3 1 + 4 1 = 1 0 (divisible by 5, Yes)
1 2 + 2 2 + 3 2 + 4 2 = 3 0 (Yes)
1 3 + 2 3 + 3 3 + 4 3 = 1 0 0 (Yes)
1 4 + 2 4 + 3 4 + 4 4 = 3 5 4 (No)
1 5 + 2 5 + 3 5 + 4 5 = 1 3 0 0 (Yes)
1 6 + 2 6 + 3 6 + 4 6 = 4 8 9 0 (Yes)
1 7 + 2 7 + 3 7 + 4 7 = 1 8 7 0 0 (Yes)
1 8 + 2 8 + 3 8 + 4 8 = 7 2 3 5 4 (No)
You can see that every 4th term power (multiple of 4) is not divisible by 5.
That means the values of n are 4, 8, 12, 16, 20 and 24 (less than 25).
Sum of integers = 4 + 8 + 1 2 + 1 6 + 2 0 + 2 4 = 8 4