I have the following function:
$T_n(d)=\sum\limits_{k=\frac{n-d}{2}}^{\lceil \frac{n}{2} \rceil}{k\choose \frac{n-d}{2}}$ ${n \choose 2k}$, where $n,d\in \mathbb{N}^0$, and $n,d$ have the same parity.
Looking at the sequences for various $d$, it seems that the formula is a polynomial of degree $d$ in $n$. This is speculation, but for example, where defined, it would appear that:
$T_{n}(1)=n$, $T_{n}(2)=\frac{1}{2}n^2$, $T_{n}(3)=\frac{1}{6}n^3-\frac{1}{6}n$, and $T_{n}(4)=\frac{1}{24}n^4-\frac{1}{6}n^2$
In fact, after further numerical testing, it seems that
$T_n(d)=\frac{n}{d!}\prod\limits_{j=1}^{d-1}(n-(2j-d))$
So my question is, is there a way to confirm the above results and show whether or not $T_n(d)$ is a polynomial of degree $d$ in $n$? If so, is there an intuitive reason why it is a polynomial with evenly spaced integer roots? The result seems rather elegant, if it's true.
EDIT: Simplifying the above expression, we have
$$T_n(d)=\frac{n}{d!}\prod\limits_{j=1}^{d-1}(n-(2j-d))=\frac{n}{d!}\frac{(n-1+(d-1))!!}{(n-1-(d-1))!!}=\frac{2^d n}{n+d}\cdot {\frac{n+d}{2} \choose d}$$
The third and fourth expressions in particular, seem like they would be very useful for a combinatorial proof. $n!!$ is the standard double factorial.
Here is a purely symbolic approach via the Snake Oil method. (See generatingfunctionology for more details). To make things simpler to read, note that $n=2m+d$ for some integer $m$ since $n$ and $d$ have the same parity. Hence the identity to be proven is equivalent to
$$T_n(d)=\sum\limits_{k}{k\choose m}{2m+d\choose 2k}=2^d \frac{2m+d}{2m+2d}{m+d\choose d} \tag{1}$$ The summation is over all integers $k$, with the understanding that ${n \choose k}=0$ unless $n\geq k\geq 0$.
To apply the Snake Oil method, we multiply the LHS by $x^d$ and sum over all $d$: $$\sum_{d,k} {k\choose m}{2m+d\choose 2k}x^d=\sum_k \binom{k}{m}\left[\sum_d\binom{2m+d}{2k}x^d\right]\tag{2}$$ The inner sum may be evaluated by shifting $d\to d-2m+2k$ to obtain
$$\sum_d\binom{d+2k}{2k}x^{d+2k-2m}=\frac{x^{2k-2m}}{(1-x)^{2k}}$$ where we have recalled the negative binomial series $(1-x)^{-n-1}=\sum_k \binom{k+n}{n} x^k$. This leaves the outer sum, which we shift by $k\to k+m$ to obtain
\begin{align} \sum_k \binom{k}{m} \frac{x^{2k-2m}}{(1-x)^{2k}} &=\sum_k \binom{k+m}{m} \frac{x^{2k}}{(1-x)^{2k+2m}} &(k\to k+2m) \\ &=\frac{1}{(1-x)^{2m}}\sum_k \binom{k+m}{m}\left(\frac{x^2}{(1-x)^2}\right)^k \\ &=\frac{1}{(1-x)^{2m}}\left[1-\frac{x^2}{(1-x)^2}\right]^{-m-1}&(\text{negative binomial series})\\ &=\frac{1}{(1-x)^{2m}}\left(\frac{(1-x)^2}{1-2x}\right)^{m+1}\\ &=\frac{1-x}{(1-2x)^{m+1}} \end{align}
So we have obtained the sum over $d$ in closed form. But we can expand this in a second way, using once again the negative binomial series:
\begin{align} \frac{1-x}{(1-2x)^{m+1}} &=(1-x)\sum_d \binom{m+d}{d}(2x)^d\\ &=\sum_d \binom{m+d}{d}(2x)^d-\sum_d \binom{m+d}{d}2^d x^{d+1}\\ &=\sum_d \binom{m+d}{d}(2x)^d-\sum_d \binom{m+d-1}{d-1}2^{d-1} x^{d}&(\text{$d\to d-1$ on 2nd term})\\ &=\sum_d \left[\binom{m+d}{m}-\frac12\binom{m+d-1}{m}\right](2x)^d \end{align}
The bracketed term simplifies upon factoring out the first binomial coefficient:
\begin{align} 1-\frac12\binom{m+d-1}{m} \binom{m+d}{m}^{-1} &=1-\frac12 \frac{(m+d-1)!}{m!(d-1)!}\cdot \frac{m!\,d!}{(m+d)!}\\ &=1-\frac12 \frac{d}{m+d}\\ &=\frac{2m+d}{2m+2d} \end{align} This yields the overall coefficient of $x^d$ as
$$2^d\frac{2m+d}{2m+2d}\binom{m+d}{m}$$
which by comparison with $(2)$ gives the desired identity.