If you already know the summations for consecutive integers and consecutive squares, you can do it like this:
$$\begin{align*}
\sum_{r=1}^n r(n+1-r)&=\sum_{r=1}^nr(n+1)-\sum_{r=1}^nr^2\\
&=(n+1)\sum_{r=1}^nr-\sum_{r=1}^nr^2\\
&=(n+1)\frac{n(n+1)}2-\frac{n(n+1)(2n+1)}6\\
&=\frac16n(n+1)\Big(3(n+1)-(2n+1)\Big)\\
&=\frac16n(n+1)(n+2)\;.
\end{align*}$$
Added: Which is $\dbinom{n+2}3$, an observation that suggests another way of arriving at the result. First, $r$ is the number of ways to pick one number from the set $\{0,\dots,r-1\}$, and $n+1-r$ is the number of ways to pick one number from the set $\{r+1,r+2,\dots,n+1\}$. Suppose that I pick three numbers from the set $\{0,\dots,n+1\}$; the middle number of the three cannot be $0$ or $n+1$, so it must be one of the numbers $1,\dots,n$. Call it $r$. The smallest number must be from the set $\{0,\dots,r-1\}$, and the largest must be from the set $\{r+1,r+2,\dots,n+1\}$, so there are $r(n+1-r)$ three-element subsets of $\{0,\dots,n+1\}$ having $r$ as middle number. Thus, the total number of three-element subsets of $\{0,\dots,n+1\}$ is $$\sum_{r=1}^nr(n+1-r)\;.$$ But $\{0,\dots,n+1\}$ has $n+2$ elements, so it has $\dbinom{n+2}3$ three-element subsets, and it follows that
$$\sum_{r=1}^nr(n+1-r)=\binom{n+2}3=\frac{n(n+1)(n+2)}6\;.$$