OFFSET
0,2
COMMENTS
Is there any way to tell by looking at a binary number whether or not it is a term of this sequence?
LINKS
FORMULA
MATHEMATICA
s[0] = 1; s[n_] := s[n] = s[n-1] + DigitCount[s[n-1], 2, 1]; Table[FromDigits[IntegerDigits[s[n], 2]], {n, 0, 50}] (* Amiram Eldar, Jul 28 2023 *)
PROG
CROSSREFS
KEYWORD
nonn,base
AUTHOR
N. J. A. Sloane, Oct 17 2013
STATUS
approved