OFFSET
1,3
COMMENTS
A218252 is divided into groups with length the numbers with odd position in this sequence.
LINKS
Charles R Greathouse IV, Table of n, a(n) for n = 1..10000
EXAMPLE
For n=7, the numbers you get are 7,8,10,12, and because this takes 3 steps, the 7th term is 3.
PROG
(PARI) f(n)=for(k=n+1, n+log(n)\log(2)+1, if(k-hammingweight(k)==n, return(k)))
a(n)=my(k); while(n=f(n), k++); k \\ Charles R Greathouse IV, Oct 29 2012
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Nico Brown, Oct 24 2012
STATUS
approved