What is the proper notation for a function with increasing layers of summations upon summations?

99 Views Asked by At

I have a function that I am trying to formally describe, that works as follows:

$$T_0(n)=1 \\ T_1(n)=n \\ T_2(n)=\sum_{i =1}^n i \\ T_3(n)=\sum_{j=1}^n \sum_{i=1}^j i \\ T_4(n)=\sum_{k=1}^n \sum_{j=1}^k \sum_{i=1}^j i $$ and so on.

I'm looking to generalize it to the form $T_k(n)$, where all $k$ are natural numbers zero-inclusive and all $n$ are natural numbers zero exclusive. How would I define this function using formal notation?

Furthermore, these types of functions are of some interest to me, specifically regarding applications in evaluating higher-dimensional space, could you point me towards the name of this type of function and subjects like it?

Update

So it seems I may have accidentally discovered combinations. Thanks 10th-grade stats. However, I still do wonder if there is a formal way to describe repeated successive applications of functions and operators, like the summation. Full points for anyone who answers $n+k-1$ choose $k$, but for future use I'd really like to see how you'd notate repeat application like this. I understand you could define it recursively, are there any other options?

3

There are 3 best solutions below

0
On

To answer the first question, define them recursively: $T_0(n)=1$, and

$$T_{k+1}(n)=\sum_{i=1}^nT_k(i)$$

for each $k\in\Bbb N$. However, they can also be defined explicitly: it turns out that $T_k(n)=\binom{n+k-1}k$. This is easily verified by induction, using the recursive definition of the functions.

3
On

$T_0 = {n\choose 0}\\ T_1 = {n\choose 1}\\ T_2 = {n+1\choose 2}$

Do you think you can come up with a proof that $T_m = {n+m-1\choose m}$?

0
On

While not technically a direct notation for repeatedly applying summation, if you consider that multiplication is defined as repeated additions, and that the summations above essentially encapsulate multiplication by increasing sequential integers, the function can be expressed as rising factorials. Using Pochhammer notation, this function can be written $$T_k(n) = \frac{n^{(k)}}{k!}$$

Alternatively, it can be written using the notation preferred by Ronald Graham, Donald Knuth and Oren Patashnik among others

$$T_k(n) = \frac{n^{\bar{k}}}{k!}$$

Regardless of notation, both of these expand to the following, which is equivalent to the function produced by the compounding summations.

$$T_k(n) = \frac{n(n+1)(n+2)\cdots(n+k-1)}{k!}$$