As I calculated the sum of the serie above doesn't exist(sum doesn't converge). How can I prove it using the double computing(combinatorical method)?
Asked
Active
Viewed 68 times
1 Answers
5
use the hockey stick identity.
What we want is $\sum_{i=3}^{n}\binom{n}{3}6$
It is a known fact $\sum_{i=k}^n\binom{i}{k}=\binom{n+1}{k+1}$
Hence $\sum_{i=3}^{n}i(i-1)(i-2)=6\binom{n+1}{4}$

Asinomás
- 105,651
$$\sum_{k=1}^nP(k),$$ were $P$ is a polynomial of degree $d$ can be expressed in a closed-form, which is a polynomial in $n$ of the degree $d+1$.
This can be established using the Faulhaber formula, or more directly.
Let $$Q(n):=\sum_{k=1}^nP(k).$$
Then
$$Q(n)-Q(n-1)=P(n).$$
By identifying the coefficients, you obtain a linear system of $d+1$ equations in $d+1$ unkowns $q_1,q_2,\cdots q_{d+1}$ (indeed, $Q(0)=q_0=0$).
– Feb 10 '16 at 20:33