Not a full answer but way to much for a comment :
Let $n$ be a natural number and $f_n$ defined as:
$$
f_n\left(x\right) = e^{-x}\sum_{k=0}^{n}\frac{x^k}{k!}
$$
Now clearly a truncated taylor series for $\exp(x)$ is less than $\exp(x)$ for $x>0$.
So
$$f_n(x) < 1$$
Taylor's theorem with error term gives us
$$\exp(x) = 1 + x + x^2/2! + ... + x^n/n! + R_n(x)$$
where for $x>0$ we get $0 < R_n(x) < \exp(x) \frac{x^{n+1}}{(n+1)!} $.
So we get for $x>0$ (using O-notation)
$$ f_n(x) < 1 = \exp(-x) \exp(x) = \frac{1 + x + x^2/2! + ...}{\exp(x)} + O(\frac{x^{n+1}}{(n+1)!})$$
We conclude
$$1 = \exp(-x) \exp(x) = f_n(x) + O(\frac{x^{n+1}}{(n+1)!})$$
If we can show that $f_n(n)$ is about equal to this $O(\frac{x^{n+1}}{(n+1)!})$
then both must equal about $1/2$ and thereby proving the conjecture.
We could do this in steps
show that $\int_1^{\infty} \frac{x^t}{t!} = \exp(x) + o(1)$.
show that $\int_1^{n} \frac{x^t}{t!} = \exp(x) - \frac{x^{n+1}}{(n+1)!} + o(1)$
however that seems like a hard or long way ; those integrals have no closed forms, so we need truncated series or asymptotics again or something clever.
We reconsider the problem
$$1 = f_n(x) + \frac{R_n(x)}{\exp(x)}$$
And we notice $R_n(x) = \sum_{k>n} \frac{x^{k+1}}{(k+1)!}$.
We use Stirling's approximation for $x^v/v!$ ;
$$\frac{x^v}{\sqrt{2 \pi v} (v/e)^v}$$
So we get
$$\frac{R_n(x)}{\exp(x)} = \sum_{k>n} \frac{x^{k+1}}{\sqrt{2 \pi (k+1)} (k+1)^{k+1}}$$.
We simply further
$$\frac{R_n(x)}{\exp(x)} = \sum_{k>n} \frac{(x/(k+1))^{k+1}}{\sqrt{2 \pi (k+1)}}$$.
Now for $n$ close to $x$ and close to the first $k$ value $> n$ we have
$$ \sum_{k>n} \frac{(n/(k+1))^{k+1}}{\sqrt{2 \pi (k+1)}} < \sum_{k=n+1}^{n+3} \frac{1}{\sqrt{2 \pi (k+1)}}$$.
What seems to go to small values as $n$ increases ?
Therefore I believe that actually $f_n(n) > \frac{1}{2}$, but it might be that "somewhere around" $p = n$ we might have $f_n(p) = 1/2$
I believe my approximation is good enough to conclude that.
I want to point out that
$$(1 + x/v)^v$$ is close to $\exp(x)$ for large $v$.
When $v = x$ however
$$(1+1)^v = 2^v$$
, pretty far from the exponential function.
I think the polynomial of degree $v$ for $(1+x/v)^v$ is comparable to the taylor polynomial of degree $v$ so that the taylor polynomial of degree $n = x$ for $\exp(x)$ is also closer to $2^x$ than to the exponential.
I think an analogue thing is happening here.
Ofcourse one can put in more effort and use better approximations and methods but I think the conclusion remains the same.
Maybe this answer contains a mistake or the approximations are not sharp enough, but I do not think so.
EDIT
If I understand the other answers correctly, I made a mistake.
However I think it is valid to say I have shown that $a_n / n$ tends to $1$.
This should follow from say $a_n / n = 2$ or $1/2$ then
$ \sum_{k>n} \frac{( 2 n/(k+1))^{k+1}}{\sqrt{2 \pi (k+1)}} = \sum_{k>n} \frac{2^{k+1} (n/(k+1))^{k+1}}{\sqrt{2 \pi (k+1)}} $ what clearly goes to infinity.
or
$ \sum_{k>n} \frac{( (1/2) n/(k+1))^{k+1}}{\sqrt{2 \pi (k+1)}} = \sum_{k>n} \frac{(1/2)^{k+1} (n/(k+1))^{k+1}}{\sqrt{2 \pi (k+1)}} $ what clearly goes to zero.
so $ n/2 < a_n < 2 n $.
I am uncertain if I can improve it alot without using the methods of other answers.
Or did I misunderstand the purpose of fusing ?
– mick Feb 18 '24 at 21:54