OFFSET
1,1
COMMENTS
Complement of A283777.
LINKS
Clark Kimberling, Table of n, a(n) for n = 1..10000
FORMULA
a(n+1) - a(n) is in {1,2,3} for every n.
MATHEMATICA
PROG
(PARI) for(n=1, 125, if(floor(n*exp(1))%2==1, print1(n, ", "))) \\ Indranil Ghosh, Mar 21 2017
(Python)
from mpmath import *
import math
mp.dps=100
print([n for n in range(1, 126) if int(math.floor(n*e))%2==1]) # Indranil Ghosh, Mar 21 2017
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Mar 19 2017
STATUS
approved