Wolfram Alpha is able to telescope sums of the form $\sum (n+1)\cdots(n+k)$
e.g. $(1\cdot2\cdot3) + (2\cdot3\cdot4) + \cdots + n(n+1)(n+2)$
How does it do it?
EDIT: We can rewrite as: $\sum {(n+k)! \over n!} = \sum k!{(n+k)!\over n!k!} = \sum k!{{n+k} \choose n}$ (Thanks Daniel Fischer)
EDIT2: We can also multiply out and split sums. So e.g.
$$\sum (n-1)n(n+1) = \sum (n^3-n) = \sum n^3 - \sum n$$
But sums of powers actually seem to be more nasty than the original question, involving Bernoulli numbers. (Thanks Claude Leibovici)
And is there any name for this particular corner of maths? (i.e. How might I go about searching the Internet for information regarding this?)
PS please could we have a 'telescoping' tag?


Hint: $$ \sum_{n=k}^m\binom{n}{k}=\binom{m+1}{k+1} $$ A generalization is discussed in this answer. The equation above is equation $(1)$ with $m=0$.
Telescoping sum
To turn the sum in the question into a "telescoping sum", we can use the recurrence for Pascal's Triangle: $$ \binom{n+1}{k+1}=\binom{n}{k}+\binom{n}{k+1} $$ Using this recurrence, we get $$ \begin{align} \sum_{n=k}^m\binom{n}{k} &=\sum_{n=k}^m\left[\binom{n+1}{k+1}-\binom{n}{k+1}\right]\\ &=\sum_{n=k+1}^{m+1}\binom{n}{k+1}-\sum_{n=k}^m\binom{n}{k+1}\\ &=\left[\binom{m+1}{k+1}+\color{#C00000}{\sum_{n=k+1}^m\binom{n}{k+1}}\right]-\left[\binom{k}{k+1}+\color{#C00000}{\sum_{n=k+1}^m\binom{n}{k+1}}\right]\\ &=\binom{m+1}{k+1}-\binom{k}{k+1}\\ &=\binom{m+1}{k+1} \end{align} $$ The sums in red are the terms that are telescoped out, leaving just the first and last terms. In this case, the last term $\binom{k}{k+1}=0$.