Is there any standard notation, other than an ellipsis, for a chain of nested sigma summations?
For instance, I have: $$ \sum_{b_0=0}^{L} \sum_{b_1=0}^{L-b_0} \sum_{b_2=0}^{L-b_0-b_1} \cdots \sum_{b_N}^{L-b_0-b_1- \cdots - b_{N-1}} f\left(b_0, b_1, b_2, \ldots, b_N \right) $$
It seems like there should be some better way to write this. For instance, something like:
$$ \left( \bigodot\limits_{i=0}^{N} \sum_{b_i=0}^{L-\sum_{k=0}^{i-1} b_i} \right) \left( f\left(b_0, b_1, b_2, \ldots, b_N \right) \right) $$