I would like to know if there is some closed form to solve for a sum in the form:
$nPk +(n-1)Pk + (n-2)Pk + ... + kPk$
For instance, if $n=7$ and $k=2$:
$7P2 + 6P2 + 5P2 + ... + 2P2$ = $\frac{7!}{5!} + \frac{6!}{4!} + \frac{5!}{3!}+ ...+ \frac{2!}{0!}$
The sum you want is$$\sum_{i=0}^{n-k}\frac{(n-i)!}{(n-i-k)!}=k!\sum_{i=0}^{n-k}\frac{(n-i)!}{(n-i-k)!k!}=k!\sum_{i=0}^{n-k}\binom{n-i}{k}.$$ Here, note that $\sum_{i=0}^{n-k}\binom{n-i}{k}$ is the coefficient of $x^k$ in $$(1+x)^n+(1+x)^{n-1}+\cdots+(1+x)^k$$ $$=(1+x)^k\cdot\frac{(1+x)^{n-k+1}-1}{x}=\frac{(1+x)^{n+1}}{x}-\frac{(1+x)^k}{x}.$$ Since there is no term $x^k$ in $\frac{(1+x)^k}{x}$, $\sum_{i=0}^{n-k}\binom{n-i}{k}$ is the coefficient of $x^{k+1}$ in $(1+x)^{n+1}$, which is $\binom{n+1}{k+1}$.
Hence, your sum is $$k!\binom{n+1}{k+1}=\frac{(n+1)\cdot n\cdot (n-1)\cdots (n-k+1)}{k+1}.$$