OFFSET
1,2
COMMENTS
The first 4 zeros: 1.465... < 4.437... < 18.594... < 97.130...; if z(n) is the n-th zero, then n! < z(n) < (n+1)!.
EXAMPLE
Least zero = 1.4657888006757243698...
MATHEMATICA
f[x_] := Sum[1/(n! - x), {n, 1, 30}]
Plot[f[x], {x, 0, 2}]
x /. NSolve[f[x] == 0, x, 10, WorkingPrecision -> 50]
FindRoot[f[x], {x, 1.46579}, WorkingPrecision -> 50]
f[1.465788800675724369]
CROSSREFS
KEYWORD
nonn,cons
AUTHOR
Clark Kimberling, Mar 03 2019
STATUS
approved