OFFSET
1,1
COMMENTS
The complement is A279607, the Beatty sequence for e/2.
LINKS
Clark Kimberling, Table of n, a(n) for n = 1..10000
MATHEMATICA
PROG
(PARI) e = exp(1);
for(n=1, 100, print1(floor(n*e/(e - 2)), ", ")) \\ Indranil Ghosh, Mar 30 2017
(Python)
import math
from mpmath import*
mp.dps=100
print([int(math.floor(n*e/(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