Given $n$ non-negative values. Their sum is $k$.
$$ \sum_{i=1}^n x_i = k $$
The double sum expression is defined as:
$$ \sum_{i=1}^n\big((\sum_{j=i}^n x_j)x_i\big)$$
I think that the expression reaches a minimum when $x_i = k/n$. It is true for $n=2$. Does it hold for all $n$? And how to prove it?
Thanks!