18

Since $n!$ represents $$1\cdot2\cdot3\cdots n,$$ I am wondering if there is a way to represent $$1+2+3+\dots+n?$$ What are some usual notations for the computation of some common sequences? Any other examples?

4 Answers4

28

$T_n$, where the letter T stands for Triangular.

Chris Culter
  • 27,415
  • 8
    Good answer! However, when using that notation, it is good if you always specify that by $T_n$, you mean the $n$-th triangular number (unlike with $n!$, when it is perfectly clear what you mean). – 5xum Apr 04 '14 at 07:43
  • Thanks, I didn't know this one before I checked your reference to wiki! – CyberPlayerOne Apr 04 '14 at 07:57
22

One way to write it would be simply by using the sumation notation, meaning $$1+2+3+\dots+n=\sum_{k=1}^n k.$$ Of course, that is equivalent to writing the factorials with the product notation, meaning $$n!=\prod_{k=1}^n k,$$ so I don't think that is what you were asking.

If you already know that $1+2+\dots+n=\frac{n(n+1)}{2}$, then you can just write $\frac{n(n+1)}{2}$ instead of the sum. The fact that the sum can be expressed as this rather short fraction is in my oppinion the real reason why a shortened notation does not exist. Unlike in the case of $n!$, which cannot be expressed by a polynomial in $n$, this one can be, thus shortening the notation is not needed.

EDIT: I was of course proven wrong by Chris Culter in his answer. However, I would like to add that the notation $T_n$, where $T$ stands for triangular, is not as common as $n!$. Any mathematitian in the world will know that if you write $5!$, you really mean $5\cdot 4\cdot 3\cdot 2\cdot 1$, however, if you say $T_n$, that notation can be used for other things, such as Chebyshev polynomials.

5xum
  • 126,227
  • 6
  • 135
  • 211
5

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

Also, $$k! = \prod\limits_{n=1}^k n$$

Kaj Hansen
  • 33,511
  • 2
    Right, which is why using $\sum$ is not in the spirit of the OP's question. The evaluation $\frac{1}{2}n(n+1)$ is closer in spirit. – Chris Gerig Apr 04 '14 at 07:36
3

Another way to write it would be ${n+1 \choose 2}$:

${n \choose 0}=1$ for all $n$, and ${n \choose k+1} = \sum_{k=0}^{n-1}{n \choose k}$ (with ${0 \choose k} = 0$ for $k>0$). Therefore ${n\choose 1}=n$ and thus ${n+1 \choose 2}=\sum_{k=0}^n k$. Note that this actually is $0+1+\dots+n$, but obviously the additional term $0$ doesn't change the sum.

MJD
  • 67,568
  • 43
  • 308
  • 617
celtschk
  • 44,527