abhikc3004
I solved this as a arithmetic progression, where a = 13, d=2, l = 39, and found the sum.
I am curious though about the given method of solving : the fact that sum of first 20 odd integers is 20^2 - is this a property for any n consecutive odd numbers? Is there something similar for consecutive even numbers too?
The property applies only to the
first \(n\)
positive odd integers:
\(1 + 3 + 5 + ... + (2n - 1) = n^2\)
For example, the sum of the first four positive odd integers is:
\(1 + 3 + 5 + 7 = 16 = 4^2\)
It does not apply to just any \(n\) consecutive odd integers.
Similarly, the sum of the first \(n\)
positive even integers is:
\(2 + 4 + 6 + ... + 2n = n(n + 1)\)
For example, the sum of the first five positive even integers is:
\(2 + 4 + 6 + 8 + 10 = 30 = 5(5 + 1)\)