Evaluate using combinatorial argument or otherwise $$\sum_{i=0}^{n-1}\sum_{j=i+1}^{n}\left(j\binom{n}{i}+i\binom{n}{j}\right)$$ My Attempt
By plugging in values of $i=0,1,2,3$ I could observe that this double summation is nothing but $$\left(1+2+3+...+n\right)\left(\binom{n}{0}+\binom{n}{1}+\binom{n}{2}+...+\binom{n}{n}\right)-\left(1\binom{n}{1}+2\binom{n}{2}+...+n\binom{n}{n}\right)$$which simplifies to $$\frac{n(n+1)}{2}.2^n-n.2^{n-1}=n^22^{n-1}$$ which is indeed the answer.
But I am having problem to do this summation by combinatorial argument.
$$\sum_{i=0}^{n-1}\sum_{j=i+1}^{n}\left(j\binom{n}{i}+i\binom{n}{j}\right)=\sum_{i=0}^{n-1}\sum_{j=i+1}^{n}\left(\binom{n}{i}\binom{j}{1}+\binom{n}{j}\binom{i}{1}\right)$$
That is as far as I could go.
More generally, note that $$\sum_{i,j: i<j} (a_{ij} + a_{ji}) = \sum_{i,j: i < j} a_{ij} + \sum_{i,j: i > j} a_{ij} = \sum_{i,j: i\not= j} a_{ij} = \sum_{i,j} a_{ij} - \sum_i a_{ii}.$$ Taking $a_{ij}=j\binom{n}{i}$ yields \begin{align} \sum_{i,j: i<j} \left(j\binom{n}{i} + i\binom{n}{j}\right) &= \sum_{i=0}^n \sum_{j=0}^n j\binom{n}{i} - \sum_{i=0}^n i\binom{n}{i} \\ &= \sum_{j=1}^n j \sum_{i=0}^n \binom{n}{i} - \sum_{i=1}^n i\binom{n}{i} \\ &= \sum_{j=1}^n j 2^n - n\sum_{i=1}^n \binom{n-1}{i-1} \\ &= \frac{n(n+1)}{2} 2^n - n2^{n-1} \\ &= n^2 2^{n-1}. \end{align}
For a combinatorial interpretation of $$\sum_{i,j: i\not= j} j\binom{n}{i} = n^2 2^{n-1},$$ maybe consider committees with a chair and vice chair (different from the chair) chosen from people $\{0,1,\dots,n\}$, subject to the restriction that $0$ cannot be the chair. The RHS is clear. For the LHS, $j$ could represent the larger of the chair and vice chair, leaving $j$ choices $\{0,1\dots,j-1\}$ for the smaller of the two, and $i$ could represent the number of members chosen from among $\{1,2,\dots,n\}$.