How does one write $x^{n-1} + x^{n-2}y + \cdots + xy^{n-2} + y^{n-1}$ using summation notation $\sum$? Use two indices ( and some sort of magic to indicate that the outer index should decrement)?
$$\sum_{\substack{i=0 \\ j=n-1}}^{\substack{0 \\ n-1}} x^j y^i$$
Is it possible to write it using only one index? Should it be written with only one index?
$$ \sum_{i=0}^{n-1} x^{n -1-i} y^i $$ But if you really want to use more than one index, you could try this: $$ \sum_{\begin{smallmatrix} i,j\,\in\,\{0,\,\ldots\,,\,n-1\} \\ i+j = n - 1 \end{smallmatrix}} x^i y^j $$