OFFSET
1,2
EXAMPLE
Exp(4) = 54.59815... is closer to an integer than exp(2) = 7.389056... but not exp(3) = 20.085536...
The discrepancy at 111473 is 0.499991807891326554242475...
MATHEMATICA
a = 0; Do[ d = Abs[ Round[E^n] - N[E^n, Ceiling[ Log[10, E^n] + 10]]]; If[d > a, Print[n]; a = d], {n, 1, 1000000}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Robert G. Wilson v, Jan 20 2003
EXTENSIONS
a(25)-a(28) from Martin Schlueter, Feb 08 2014
STATUS
approved