Calculate this sum:$$C_{2n}^n+2C_{2n-1}^n+4C_{2n-2}^n+...+2^nC_n^n.$$
What I tried:
$$ C^n_{2n}=\frac{(2n)!}{(n!)^2}$$
$$ 2C^n_{2n-1}=\frac{2(2n-1)!}{n!(n-1)!}=\frac{2n(2n)!}{n!n!(2n)}=\frac{(2n)!}{(n!)^2}$$
$$ 4C^n_{2n-2}=\frac{4(2n-2)!}{n!(n-2)!}=\frac{4(2n)!(n)(n-1)}{(2n)(2n-1)(n!)^2}=\frac{2(2n)!(n-1)}{(2n-1)(n!)^2}$$
$$ 2^nC_n^n=2^n$$
So our original sum is equal to this:
$$C_{2n}^n\left( 1+1+\frac{2(n-1)}{(2n-1)}+\frac{2^2(n-1)(n-2)}{(2n-1)(2n-2)}+...+\frac{2^n}{C_{2n}^n} \right)$$
$$=C_{2n}^n\sum_{k=1}^n \frac{2^k(n-1)!(2n-k)!}{(n-k)!(2n-1)!}$$
$$=C_{2n}^n\sum_{k=1}^n \frac{2n}{n-1}=C_{2n}^n2n\sum_{k=1}^n\frac{1}{n-1}=C_{2n}^n \left( \frac{2n(n-1)}{n-1} \right) = 2nC_{2n}^n$$
So... how do I go from here? Also, I'm not sure if the last 2 steps are correct.
Edit: I was starting the sum at $k=0$, fixed it to $k=1$, and then changed the rest after that.
Edit: I found the answer on a book, it's $2^{2n}$, so my answer is wrong... Still, I don't know what I did wrong, or how to correctly solve this.