OFFSET
0,2
COMMENTS
a(n) is the number k such that {log(k)} < 1/2 < {log(k+1)}, where { } = fractional part. Equivalently, the jump sequence of f(x) = log(x), in the sense that these are the positive integers k for which round(log(k)) < round(log(k+1)). For a guide to related sequences, see A219085.
FORMULA
a(n) = [e^(n + 1/2)].
EXAMPLE
log(1) = 0.000... ; log(2) = 0.693...
log(4) = 1.386... ; log(5) = 1.609...
log(12) = 2.484... ; log(13) = 2.564...
MATHEMATICA
Table[Floor[E^(n + 1/2)], {n, 0, 100}]
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Jan 01 2013
STATUS
approved