OFFSET
1,2
COMMENTS
The complement is A279608, the Beatty sequence for e/(e - 2).
LINKS
MATHEMATICA
PROG
(PARI) e = exp(1);
for(n=1, 100, print1(floor(n*e/2), ", ")) \\ Indranil Ghosh, Mar 30 2017
(Python)
import math
from mpmath import mp
mp.dps=100
print([int(math.floor(n*e/2)) for n in range(1, 101)]) # Indranil Ghosh, Mar 30 2017
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Dec 16 2016
STATUS
approved