It is showable directly by induction that the following are true:
$$\sum k = \frac{1}{2}n(n+1)$$
$$\sum k^2 = \frac{1}{6}n(n+1)(2n+1)$$
$$\sum k^3 = \frac{1}{4}n^2(n+1)^2$$
etc. Now, by doing some minor rearranging, we can make a new pattern appear. Combining the first two equations, we can observe that.
$$\sum k(k+1) = \sum k^2 + k = \sum k^2 + \sum k = \frac{1}{3}(n)(n+1)(n+2)$$
after some algebraic rearrangements.
Similarly, if we're patient, we can see that $$\sum k(k+1)(k+2) = \frac{1}{4}n(n+1)(n+2)(n+3)$$
It's not hard to imagine that this pattern continues, and in fact a quick google search shows that it does continue. The general formula is $$ \sum \limits_{k=1}^{n} k(k+1)(k+2)...(k+p-1) = \frac{1}{p+1}n(n+1)...(n+p)$$
However, the only way to prove it I can think of is difficult. It involves first finding a formula for an arbitrary sum of powers, and then doing some very ugly rearranging and summing known formulas like in these first two cases. Is there some more obvious or more direct way of proving it?
Edit: The bot is telling me there is a similar question. This is true. In the other question, the answers refer to either a case by case analysis, which I am aware of how to do. In one answer, someone uses a calculus based proof. I'd like to see an algebraic proof if that's possible.