I do think I'm wording this somewhat incorrect so I'll do my best to explain what my goal is. I'm trying to create a summation that adds $n$ values repeatedly until $m$. So it'd look something like this: $(0) + (0+1)+ (0+1+2) + ... + (0+1+2+...+m)$
I've tried setting up the summation though I'm not really sure how it would look when it's set up something like
$$ \[ \sum_{n=0}^{m} (n+...) \] $$
This may be basic but I'm unsure what'd the inside of the summation would look like.