I need to get the closed form of $1\cdot 2+2\cdot 3+3\cdot 4+\dots+n\cdot (n+1)$ I do know the ans is $n(n+1)(n+2)/3$ but i have no idea of the steps.
Here are some of my scratch works:
1 II(2)
2 IIIIII(6) difference of 4
3 IIIIIIIIIIII(12) difference of 6
............. (the pattern of difference observed is $2k$ for $k$ is 1 to $n$)
n IIIIIIII...........IIIIIII($n(n+1)$)
so i have Sum down vertical :
$$= 2n + 4(n-1) + 6(n-2) + ... +2n(n-(n-1))$$
after some simplify and grouping ,i got this:
$$2{ n\cdot n\cdot (n+1)/2 - (2+6+12+20+...+2n)}$$
I can't see i can get to the final result.
Great thanks for helping me out.