I am trying to find a closed form for the following sum: $$ \sum_{k=0}^{n-1} \left( \frac{1}{(k+1)(n-k)} \cdot \binom{n+1}{k+1}^2 \right) $$
What I have tried so far
I tried to simplify the expression by shifting the index. Let $j = k+1$. The limits change from $0 \dots n-1$ to $1 \dots n$. The term $(n-k)$ becomes $(n-(j-1)) = (n-j+1)$.
The sum becomes: $$ S = \sum_{j=1}^{n} \frac{1}{j(n-j+1)} \binom{n+1}{j}^2 $$
I noticed that I can use partial fraction decomposition on the fraction: $$ \frac{1}{j(n-j+1)} = \frac{1}{n+1} \left( \frac{1}{j} + \frac{1}{n-j+1} \right) $$
Substituting this back into the sum: $$ S = \frac{1}{n+1} \sum_{j=1}^{n} \left( \frac{1}{j} + \frac{1}{n-j+1} \right) \binom{n+1}{j}^2 $$
Due to the symmetry of binomial coefficients where $\binom{n}{k} = \binom{n}{n-k}$, the two terms in the sum are actually identical. This simplifies the expression to:
$$ S = \frac{2}{n+1} \sum_{j=1}^{n} \frac{1}{j} \binom{n+1}{j}^2 $$
I am stuck at this point. Is there a known identity for $\sum \frac{1}{j} \binom{n}{j}^2$, or is there a better way to approach this?
Any help or hints would be appreciated.