I was looking into double summations, then I thought of repeated summations. As of now, I am having difficulty simplifying, for example
$$\sum_{r=1}^8...\sum_{z=1}^y\sum_{n=1}^z\sum_{i=1}^n i$$
Note that:
$$\sum_{n=1}^z\sum_{i=1}^n i =\sum_{i=1}^1i +\sum_{i=1}^2i+\sum_{i=1}^3i ...$$
Would it be useful if I posted the numerical answers generated? I was looking to solve it algebraically.
Nonetheless, I would appreciate any help in simplifying the term.
Thank you for your time.
Following a comment by Catalin Zara above,
$$\sum_{r=1}^8...\sum_{z=1}^y\sum_{n=1}^z(\sum_{i=1}^n i)$$
can be reduced to:
$$\sum_{r=1}^8...\sum_{z=1}^y\sum_{n=1}^z(\sum_{i=1}^n\sum_{j=1}^i 1)$$
Following this post,
The above can be simplified into:
$$\binom{8+k-1}{k}$$
Where k is the number of iterations.
In general, for k iterations:
$$\sum_{r=1}^v...\sum_{z=1}^y\sum_{n=1}^z(\sum_{i=1}^n i) = \binom{v+k-1}{k}$$
Thanks you all for helping :)