A shop has $n$ different doughnuts and $n$ different muffins. I want to choose a total of $n$ items, including at least one doughnut, and I would like to have one doughnut to eat right away, and the remaining $n-1$ put in a bag. How many ways can this be done?
The doughnut I eat right away can be chosen in $n$ ways, and for each of these ways there are $\binom{2n-1}{n-1}$ ways to choose the remaining items.
Let us count another way. If we decide to get $r$ doughnuts, that can be done in $\binom{n}{r}$ ways, and then the doughnut we eat right away can be chosen in $r$ ways. The $n-r$ muffins can be chosen in $\binom{n}{n-r}$ ways, that is, in $\binom{n}{r}$ ways. So there are $r\binom{n}{r}\binom{n}{r}$ to carry out the task while choosing $r$ doughnuts. Add up, $r=1$ to $n$.