another one on sequence

This topic has expert replies
User avatar
Master | Next Rank: 500 Posts
Posts: 248
Joined: Mon Aug 11, 2008 9:51 am
Thanked: 13 times

another one on sequence

by earth@work » Wed Oct 29, 2008 8:27 pm
how do we find the sum of n terms of series : (1^2) + (1^2 +2^2) + (1^2 +2^2+3^2)+(1^2 +2^2+3^2+4^2) + ......
(not a multiple choice question)
Answer[spoiler](n*((n+1)^2)*(n+2)) /12[/spoiler]

Legendary Member
Posts: 833
Joined: Mon Aug 04, 2008 1:56 am
Thanked: 13 times

by vivek.kapoor83 » Wed Oct 29, 2008 10:22 pm
Is it a Infinite series?

User avatar
Master | Next Rank: 500 Posts
Posts: 248
Joined: Mon Aug 11, 2008 9:51 am
Thanked: 13 times

by earth@work » Thu Oct 30, 2008 8:31 am
Got the solution from another forum, pasting it below:
SOLUTION :
nth term = n(n+1)(2n+1)/6
= (2n^3 + 3n^2 + n)/6
Sum = 1/6{ 2.∑(n^3) + 3.∑(n^2) + ∑(n)}
= (1/6)[{2.(n^2)(n+1)^2/4} + 3. n(n+1)(2n+1)/6 + n(n+1)/2]
Now we can simplify this to get final answer.