Good evening to everybody.
I was reading a chapter today on a book related to recursive sequences, and I saw as an example the following simple sequence : $$a_{n+1}=a_n + n $$ I was thinking if we could find an explicit formula for this one, something like $a_n=C^n+R $ for example , or even if we can find a recursive formula (that is a formula involving only the values $ a_{n+1} , a_n , a_{n+2} $ and not the number $n$). Is this possible?
Yes, you can. $$a_2=a_1+1.$$ $$a_3=a_2+2=a_1+2+1.$$ $$a_4=a_3+3=a_2+2+1=a_1+3+2+1.$$ Find out a few more terms and conjecture a closed form for $a_n$.
Prove it using induction and you should be through.