Given recurrence:
${d_{n+1}=n(d_n+d_{n-1}) \\ d_0=1, \ d_1=0}$
I was able to calculate the EGF:
$${\sum_{n=0}^{\infty} d_n\frac{x^n}{n!} = \frac{e^{-x}}{|1-x|}}$$
Where the absolute value can be (?) dropped.
Knowing this, normally I would use the Taylor's theorem about 0. So I need to find the n-th derivative of the right part. That's where the problem begins, as these derivatives are not trivial.
How can I find the n-th derivative of the right part? Is there a better way to solve the problem using an EGF?