I have a proof by induction going but I'm stuck. It goes as follows.
Let $$S_{k} = \sum_{j=0}^{k} 2^{k-j}{k + j \choose j}.$$
Then, $$S_{0} = \sum_{j=0}^{0} 2^{-j}{j \choose j} = 4^0$$
And,
$$S_{k+1} = \sum_{j=0}^{k+1} 2^{k+1-j}{(k+1)+j \choose j}$$
$$= 2 \sum_{j=0}^{k+1} 2^{k-j} \biggl( {k+j \choose j} + {k+j \choose j-1} \biggl)$$
$$= 2 \biggl( \sum_{j=0}^{k+1} 2^{k-j} {k+j \choose j} + \sum_{j=0}^{k+1} 2^{k-j} {k+j \choose j-1} \biggl)$$
$$= 2 \biggl( \sum_{j=0}^{k} 2^{k-j} + \frac{1}{2} {2k+1 \choose k+1} + \sum_{j=0}^{k} 2^{k-j} {k+j \choose j-1} + \frac{1}{2} {2k+1 \choose k} \biggl)$$
$$= 2S_{k} + {2k+1 \choose k+1} + {2k+1 \choose k} + 2\sum_{j=0}^{k} 2^{k-j} {k+j \choose j-1}$$
$$= 2S_{k} + 2{2k+1 \choose k} + 2\sum_{j=0}^{k} 2^{k-j} {k+j \choose j-1}$$
Where can I go from here? I'm trying to find a way to get another $2S_k$, making the right side equal $4S_k$, and I think that has to be done by combining the $2{2k+1 \choose k}$ with the summation, but I'm not sure how to do that. Thanks in advance.