Easy
Unroll the recurrence xn+1=xn+(n−1) by summing the increments from x1 up to x100. The increments form 0,1,2,…,98, a simple arithmetic-series sum.
1
List the increments. Going from xn to xn+1 adds n−1.
x2=x1+0x3=x2+1x4=x3+2, …
2
Telescope up to x100. The increments added are 0+1+2+⋯+98.
x100=x1+(0+1+2+⋯+98)⇒ x100=x1+298⋅99(sum of 0..98)⇒ x100=x1+4851
3
Substitute x1=−1.
x100=−1+4851=4850
x100=4850