Since I learned easier ways of calculating summations I've been curious as to how I could find formulas for as many equations as possible. I came across the equation $x^2+x$, I've spent quite some time on this problem and could not find a solution. If someone has maybe already done this or have any suggestions on how I could get the formula that would be greatly appreciated.
Example of another summation with a equation: $\sum\limits_{i=1}^n$ = $x^2$
Equation to solve this is $\frac{n(n+1)(2n+1)}{6}$
Extending what Git Gud said: $$\sum^n_{k=0}\left(k^2+k\right)=\sum^n_{k=0}k^2+\sum^n_{k=0}k=\frac{n(n+1)(2n+1)}{6}+\frac{n(n+1)}{2}=\frac{n^3}{3}+n^2+\frac{2n}{3}$$