How do I solve $$ a_{n} = a_{n-1} + n, a_{0} = 1$$??
I solved for n=1 thru n=5:
1: 2 = a0 + 1
2: 4 = a0 + 1 + 2 = a0 + 3
3: 7 = a0 + 3 + 3 = a0 + 6
4: 11 = a0 + 6 + 4 = a0 + 10
5: 16 = a0 + 10 + 5 = a0 + 15
I'm failing to see THE pattern. I see that for each iteration from n=1, the number you add to a_0 (=1) increments by one from the last iteration in the sequence... like n=2, it's the a_0 + 1 we started with + 2 makes a_0 + 3, and for n=3, we have a_0 + 6 which is the last one + 3, for n=4 it's +4, etc.... but that's still reliant upon previous iterations, not a direct solution without having to actually iterate through them. How do I extract the solution? Isn't there an actual WAY to go about it?
Hint: Think about triangular numbers.
Follow up: To derive the formula, simply observe that the second differences are constant. This implies a quadratic relationship between $n$ and $a_n$. So what quadratic passes through $(1,1)$, $(2,3)$, and $(3,6)$?