OFFSET
1,2
COMMENTS
Complement of union of ({k==0 (mod 3)}, {2a(n)}) (A084090).
It seems that lim_{n->infinity} a(n)/n = 9/4. [This is true. The asymptotic density of this sequence is 4/9. - Amiram Eldar, Jan 16 2022]
Positions of nonzero coefficients in the expansion of Sum_{k>=0} x^2^k/(1 + x^2^k + x^2^(k+1)) (A084091).
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000 (terms 1..1000 from Harvey P. Dale)
MATHEMATICA
Select[Range[200], Mod[#, 3]!=0&&EvenQ[IntegerExponent[#, 2]]&] (* Harvey P. Dale, May 15 2018 *)
PROG
(PARI) for(n=0, 100, if(valuation(n, 2)%2==0&&n%3, print1(n", ")))
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Ralf Stephan, May 11 2003
STATUS
approved