We all know the standard recurrence relation for binomial coefficients: $$ \binom{n}{k-1} + \binom{n}{k} = \binom{n+1}{k} $$ Is there any finite-step recurrence relation one can write down for a product of binomials such as: $$ f(n,k) = \binom{n}{k}\binom{m-n}{k} $$ where $ m$ is a constant. A related question is: for gaussian distributions, the product of two gaussians is once again a gaussian. Is there such a relation for the product of binomial coefficients, possibly in terms of $\Gamma$ functions?
Thank you!
EDIT: Thanks for the hints! Unfortunately one key requirement is that the recurrence relation does not involve factors of $ n $, $ k $ or $ m$ explicitly.
There are a number of identities involving products of binomial coefficients or sums of products of binomial coefficients.
There's the (perhaps trivial)
$$\binom{n}{h}\binom{n-h}{k}=\binom{n}{k}\binom{n-k}{h}$$
One quite useful one is the Chu-Vandermonde identity
$${m+n \choose r}=\sum_{k=0}^r{m \choose k}{n \choose r-k}$$
for non-negative integer $m$,$n$ and $r$.
You can find a few additional results in the Wikipedia article on binomial coefficients.
I don't think these directly solve your problem though.