The sum of the series $1\cdot { 3 }^{ 2 }+2\cdot { 5 }^{ 2 }+3\cdot { 7 }^{ 2 }+...$ upto $20$ terms is
Reveal answer
Fill a bubble to check yourself
The sum of the series $1\cdot { 3 }^{ 2 }+2\cdot { 5 }^{ 2 }+3\cdot { 7 }^{ 2 }+...$ upto $20$ terms is
None of these
The n-th term is n * (2n+1)^2 = n * (4n^2 + 4n + 1) = 4n^3 + 4n^2 + n. Sum = 4*sum(n^3) + 4*sum(n^2) + sum(n). For n=20: 4*(20*21/2)^2 + 4*(20*21*41/6) + (20*21/2) = 4*(44100) + 4*(2870) + 210 = 176400 + 11480 + 210 = 188090.
Observe that the coefficients of the squared terms form an arithmetic progression 1, 2, 3, while the bases form an arithmetic progression 3, 5, 7. The nth term of the series is given by n multiplied by (2n + 1)^2, which expands to 4n^3 + 4n^2 + n. Apply the standard summation formulas for squares and cubes: the sum of n squares is n(n+1)(2n+1)/6 and the sum of n cubes is (n(n+1)/2)^2. Substituting n = 20 into 4(n(n+1)/2)^2 + 4(n(n+1)(2n+1)/6) + n(n+1)/2 results in 188090.