Say there is sequnce of number $A(i) = i * (i+1)$, i.e. like 1*2, 2*3, 3*4 and so on. Is there any formula that allows to compute sum of the first N such numbers?
Asked
Active
Viewed 47 times
1
1 Answers
1
Use that $$ k(k+1)(k+2)-(k-1)k(k+1)=k(k+1)·((k+2)-(k-1))=3·k(k+1) $$ to find a representation as telescoping sum.
This can be rewritten as $\binom{k+2}{3}-\binom{k+1}{3}=\binom{k+1}{2}$.
One can use the identity of Pascals triangle in general in an analogous way, as $$ \binom{k+m-1}m-\binom{k+m-2}m=\binom{k+m-2}{m-1}=\frac{k(k+1)···(k+m-2)}{(m-1)!} $$
Lutz Lehmann
- 126,666
$\sum\limits_{i=1}^ni^2=\frac{n(n+1)(2n+1)}{6}$
– Peter Woolfitt Feb 29 '16 at 23:27