I want to show $$\sum_{k=1}^{n}k\binom{n}{k} = n2^{n-1}$$ by way of combinatorial proof.
Here is my attempt: Let there be $n$ people. We will count the number of ways in which we can choose a committee of any size and its chairperson, in two ways.
First, we will find a committee and then find a chairperson for that committee. Let the size of the committee be $k\leq n.$ There are $\binom{n}{k}$ of choosing this committee. Then, from the $k$ members chosen, there will be one chairperson, which gives us $k$ choices for the chairperson. By the basic principle of counting, there are $$k\binom{n}{k}$$ possible choices for a committee and its chairperson to be chosen (of size $k$). Since $k$ can be any size from 1 to $n$, with each size mutually exclusive, there are $$\sum_{k=1}^{n}k\binom{n}{k}$$ choices for committees and their chairpersons.
The second way by which we count is to first find the chairperson and then find the rest of the members of the committee. Again, denote the size of the committee by $k.$ We first choose a chairperson, having $n$ choices for the same. After choosing the chairperson, we need $k-1$ members from the remaining $n-1$ members (other than the chairperson since only one member can be the chairperson).
This gives $$n\binom{n-1}{k-1}$$ choices for a committee of size $k.$ Note that since the chairperson is present, there is at least one member, so $k\geq 1.$ Now, to find all choices, we note that the sizes are mutually exclusive and range from 1 to $n$ giving $$\sum_{k=1}^{n}{n}\binom{n-1}{k-1} = n\sum_{k=0}^{n-1}\binom{n-1}{k} = n2^{n-1}.$$
This shows $$\sum_{k=1}^{n}k\binom{n}{k} = n2^{n-1}$$.
Please see if my proof is correct and there are ways to improve it.