Glam Prestige Journal

Bright entertainment trends with youth appeal.

$\begingroup$

(Pardon if this seems a bit beginner, this is my first post in math - trying to improve my knowledge while tackling Project Euler problems)

I'm aware of Sigma notation, but is there a function/name for e.g.

$$ 4 + 3 + 2 + 1 \longrightarrow 10 ,$$

similar to $$4! = 4 \cdot 3 \cdot 2 \cdot 1 ,$$ which uses multiplication?

Edit: I found what I was looking for, but is there a name for this type of summation?

$\endgroup$ 3

4 Answers

$\begingroup$

The name for

$$ T_n= \sum_{k=1}^n k = 1+2+3+ \dotsb +(n-1)+n = \frac{n(n+1)}{2} = \frac{n^2+n}{2} = {n+1 \choose 2} $$

is the $n$th triangular number. This picture demonstrates the reasoning for the name:

$$T_1=1\qquad T_2=3\qquad T_3=6\qquad T_4=10\qquad T_5=15\qquad T_6=21$$

$\hskip1.7in$ enter image description here

$\endgroup$ 6 $\begingroup$

Donald Knuth in The Art of Computer Programming calls the $n$-th triangular number the "termial function", and denotes it

$$n? = 1 + 2 + ... + n = \sum_{k=1}^n k $$

(Third edition, Volume 1, page 48).

$\endgroup$ 7 $\begingroup$

Actually, I've found what I was looking for.

From the wiki on Summation:

enter image description here

$\endgroup$ 1 $\begingroup$

Not exactly a name, but note that $$ \sum\limits_{k=1}^{n} k= \frac{n(n+1)}{2}={n+1 \choose 2} $$

$\endgroup$