I am trying to find a general formula for the following summation;
$$S_k=\sum_{n=0}^∞ \dfrac{n^k}{n!}$$ So naturally, first I tried to find the expression for $k=1,2,3,4$ to see if I can get a pattern and it appears as though $S_k=(2k-1)e$ where $e$ is Napier's constant;
$$S_1=\sum_{n=0}^∞ \dfrac{n}{n!}=e$$ $$S_2=\sum_{n=0}^∞\dfrac{n^2}{n!}=\sum_{n=0}^∞\dfrac{n-1}{(n-1)!}+\sum_{n=0}^∞\dfrac{2}{n!}=3e$$ Similarly, for $k=3$, we have; $$S_3=\sum_{n=0}^∞\dfrac{n^2-1}{(n-1)!}+e=\sum_{n=0}^∞\dfrac{n+1}{(n-2)!}+e=\sum_{n=0}^∞\dfrac{1}{(n-3)!}+4e=5e$$
In all the above computations, I'm using the fact that negative factorials are infinity so their reciprocal is $0$ and has no effect on the sum. And of course, that $e=\sum_{n=0}^∞ \frac1{n!}$
However, I'm unable to prove this assertion. I tried to set up a recursion in $S_k$ and prove this formula via induction but I do not know how to solve this kind of recursion; it somewhat resembles a formula for an arithmetic progression whose differences are themselves in an arithmetic progression I'd seen earlier but I'm unable to correlate it well.
$$S_k=\sum_{n=0}^∞ \dfrac{n^k}{n!}=S_k=\sum_{n=0}^∞ \dfrac{n^{k-1}-1}{(n-1)!}+e$$ $$\implies S_k=\sum_{n=0}^∞ \dfrac{n^{k-2}+n^{k-3}+...1}{(n-2)!}+e=\sum_{i=1}^{k-2} S_i +2e$$
Can anyone help me solve this problem?