We are given $n,k$ and $n$ can be very large ($10^9-10^{14}$) but k is relatively small ($k<=2000$).
I tried using sum and product of reciprocal of roots but it fails at the first step itself due to finding the sum of an h.p.
I came up with a recursive form :
$$\operatorname{ans}[n][k]=n\cdot \operatorname{ans}[n-1][k]+\operatorname{ans}[n-1][k-1]$$
which again isn't helpful at all.