simplify summation with binomial coefficients

129 Views Asked by At

Is there a way to simplify this summation?:

$$\sum ^n _{k=0} \left(n-k\right)!\binom{n}{k}^2$$

2

There are 2 best solutions below

0
On

Alright, some of the comments have pointed out that it seems pretty difficult to find a definite formula but we can simplify it down to something much nicer to handle. We have, $$\sum ^n _{k=0} \left(n-k\right)!\binom{n}{k}^2$$ Now, multiplying and dividing $k!$ and $n!$we get, $$n! \sum^n _{k=0} \frac{1}{k!} \frac{\left(n-k\right)! \cdot k!}{n!} \cdot\binom{n}{k}^2 $$ This is equivalent to $$n! \sum^n _{k=0} \frac{\binom{n}{k}^2}{\binom{n}{k}k!}$$ Which is $$n! \sum^n _{k=0} \frac{\binom n k}{k!}$$

0
On

The simplest form seems to be $n! L_n(-1)$, where $L_n(x)$ is a Laguerre polynomial.