You know this how you can express a sum of consecutive terms like this: $1 + 2 + 3 + ... + n = \frac{n(n + 1)}{2}$? In other words, only using $n$?
I would like to know if there is a way to shorten, or to express such a sum of sums:
For example, for $n = 4$ $$\sum_{i = 1}^{4}\frac{i(i + 1)}{2} =1 + (1 + 2) + (1 + 2 + 3) + (1 + 2 + 3 + 4) = 20$$
Can I express this using only $n$?