login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A218253
The number of steps it takes, by taking the smallest number so that it minus the number of ones in its binary representation is the previous number, to reach a number which has no others that satisfy this property.
3
1, 0, 2, 1, 0, 0, 3, 2, 0, 1, 1, 0, 0, 0, 3, 2, 0, 1, 2, 0, 0, 1, 2, 0, 1, 1, 0, 0, 0, 0, 3, 2, 0, 1, 2, 0, 0, 1, 3, 0, 1, 2, 0, 0, 0, 1, 3, 0, 1, 2, 0, 0, 2, 1, 0, 1, 1, 0, 0, 0, 0, 0, 3, 2, 0, 1, 2, 0, 0, 1
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
Sequence in context: A281449 A280605 A362427 * A037872 A037854 A362633
KEYWORD
nonn,easy
AUTHOR
Nico Brown, Oct 24 2012
STATUS
approved