Given the sequence $u_1=1$ and $u_{n+1}=u_n+(n+1)$, show that $u_{n+1}=\frac{(n+1)(n+2)}{2}$.
This is what I have so far,
I know the sequence for this is 1, 3, 6, 10, 15, 21, 28 and
$u_n+(n+1)=\frac{(n+1)(n+2)}{2}$
To derive what $u_n$ should equal to, I noticed that because the second difference is the same in the sequence, I have to write a quadratic function ($ax^2+bx+c$. So I set up the system of the equation as follows: $a+b+c=1$; $4a+2b+c=3$; $9a+3b+c=6$
I found that $a=\frac{1}{2}, b=\frac{1}{2}, c=0$, and then I simplified and showed that $u_{n+1}=\frac{(n+1)(n+2)}{2}$
Is there another way or possibly a faster way to show that $u_{n+1}=\frac{(n+1)(n+2)}{2}$? Any help is appreciated.