Knuth (Section 1.2.6) in Example 2 asks
What is the value of $\sum_{k} \binom{n+k}{2k}\binom{2k}{k} \frac{(-1)^k}{k+1}$, if $n$ is a non-negative integer?
Knuth references how to simplify products with Equation (20) $$\binom{r}{m} \binom{m}{k} = \binom{r}{k}\binom{r-k}{m-k}, \text{integer $m$, integer $k$}. \qquad (20)$$ Knuth also references Eq. (7) which is an example of moving in/out of parentheses $$k \binom{r}{k} = r \binom{r-1}{k-1}, \text{integer $k \neq 0$.} \qquad (7)$$
As a first step, Knuth applies Eq. (20) to simplify products. $$\sum_k \binom{n+k}{k}\binom{n}{k} \frac{(-1)^k}{k+1}.$$ The next step is where I don't understand his derivation. Knuth applies Eq. (7) to get $$ \sum_k \binom{n+k}{k} \binom{n+1}{k+1} \frac{(-1)^k}{n+1}. \qquad (27)$$
If you're following along Knuth section (1.2.6) then I added the exact reference which is Eq. (27). I don't see how Knuth derived Eq. (27). I can see how $$\binom{n}{k} k = \binom{n-1}{k-1} n$$ However, it is not clear to me how to apply the approach from Eq. (7) to make $$\binom{n}{k} \frac{(-1)^k}{k+1} = \binom{n+1}{k+1} \frac{(-1)^k}{n+1}$$ What are the steps required to arrive at the solution here?