For even values of $n$, can the following be proven analytically?
$$(n+1)\binom{n}{\frac{n}2}\int_{\frac12}^1[x(1-x)]^{\frac{n}2}dx=\frac12$$
I cannot seem to compute this analytically. Is it possible? I can compute this numerically for various values of $n$:
In [202]: from sympy import binomial as bnm; from numpy import power as pw
In [203]: wp=lambda n=10: (n+1)*bnm(n,int(n/2))*I(lambda x:pw(x*(1-x),int(n/2)),1/2,1)
In [204]: wp(n=18),wp(20),wp(26),wp(32),wp(42),wp(48),wp(52)
Out[204]:
(0.500000000000000,
0.500000000000000,
0.500000000000000,
0.500000000000000,
0.500000000000000,
0.500000000000001,
0.500000000000000)
Please note that this question is not a duplicate of Prove: $\binom{n}{k}^{-1}=(n+1)\int_{0}^{1}x^{k}(1-x)^{n-k}dx$ for $0 \leq k \leq n$
The reason that this question is not a duplicate of that question is the different integration limits. The different integration limits completely alter the question as well as the solution.