I have the sum $$\sum_{k=1}^n \binom{n-1}{k-1}\frac{1}{k!} =\ _1F_1(1 - n, 2, -1),$$ which I need to upper bound. Here $_1 F_1$ is the hypogeometric function. I could trivially bound this as $$\sum_{k=1}^n \binom{n-1}{k-1}\frac{1}{k!}\leq\sum_{k=1}^n \binom{n-1}{k-1} = 2^{n-1} $$ however this isn't tight enough for my purposes. Plotting the function for $n<20,000$ seems to show that it doesn't scale exponentially, which leads me to think this is not tight.
I'm hoping there might be a quasi-polynomial bound $O(2^{polylog(n)})$ but don't see a way of proving this. Any help or suggestions on how to find an upper bound for this sum would be appreciated!
Consider $$a_n=n! \,\, _1F_1(1-n;2;-1)$$ which generates sequence $A000262$ in $OEIS$
In the formula section, you will see the asymptotics given by Vaclav Kotesovec in year $2013$. Using it
$$\, _1F_1(1-n;2;-1)\sim \frac{n^{n-\frac{1}{4}}}{n!\sqrt{2e}}\,e^{2 \sqrt{n}-n} \left(1-\frac{5}{48 \sqrt{n}}-\frac{95}{4608 n}+O\left(\frac{1}{n^{3/2}}\right)\right) \tag 1$$
Computing for $n=20000$ the exact value is $6.98525619\times 10^{118}$ while the approximation gives $6.98525623\times 10^{118}$
So, a good and simple upper bound is $$\, _1F_1(1-n;2;-1) < \frac{n^{n-\frac{1}{4}}}{n!\sqrt{2e}}\,e^{2 \sqrt{n}-n} $$ The expansion is also an upper bound.
Edit
Using Stirling approximation, we have the simpler
$$\, _1F_1(1-n;2;-1) < \frac {e^{2 \sqrt{n}} } {2 n^{\frac 34}\sqrt{e \pi } }$$
A few values to compare the formula $(1)$ anf the exact value $$\left( \begin{array}{cccc} n & (1) & \, _1F_1(1-n;2;-1) & (1)-\, _1F_1(1-n;2;-1) \\ 1 & 1.02035 & 1.00000 & 0.0203472 \\ 2 & 1.51288 & 1.50000 & 0.0128769 \\ 3 & 2.17622 & 2.16667 & 0.0095515 \\ 4 & 3.04968 & 3.04167 & 0.0080102 \\ 5 & 4.18230 & 4.17500 & 0.0073022 \\ 6 & 5.63344 & 5.62639 & 0.0070493 \\ 7 & 7.47395 & 7.46687 & 0.0070821 \\ 8 & 9.78790 & 9.78058 & 0.0073181 \\ 9 & 12.6746 & 12.6669 & 0.0077157 \\ 10 & 16.2508 & 16.2426 & 0.0082544 \end{array} \right)$$