0

I am trying to remember what the series 1+2+3+4+5+...+n is equal to in order to determine the series of breaks within the graph of x[x]. I know it obviously diverges as it goes to infinity, but what is the equation for when n is finite?

The sequence for the series goes 1,3,6,10,15,21,28,36,45,55,66,78,...

user64742
  • 2,207
  • The formula is mentioned in several answers. Anyway there are many other similar questions. This question is probably the question with the most duplicates. – callculus42 Nov 22 '15 at 04:53

2 Answers2

1

The general term of the series you are considering is $$a_n=\sum_{i=1}^n i=\frac{1}{2} n (n+1)$$ as you can see here.

1

Let $S_n=1+2+3+\cdots+n=n+(n-1)+(n-2)+\cdots+1.$. Then, $$2S_n=(n+1)+(n+1)+(n+1)+\cdots+(n+1)=n(n+1).$$

Hence, $$S_n=\frac{n(n+1)}{2}.$$

MrMazgari
  • 1,785