This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A207460 #14 Nov 07 2020 13:31:26 %S A207460 4,11,16,31,35,44,49,62,70,73,82,93,97,110,112,127,143,145,158,162, %T A207460 173,176,191,199,200,211,220,224,239,241,254,286,290,301,304,319,327, %U A207460 328,339,348,352,367,369,382,398,400,415,419 %N A207460 Let a(1) = 4. For n > 1, a(n) is the least number greater than a(n-1) such that the Hamming distance D(a(n-1),a(n)) = 4. %C A207460 All terms are odious (A000069). %H A207460 Harvey P. Dale, <a href="/A207460/b207460.txt">Table of n, a(n) for n = 1..1000</a> %t A207460 nxt[n_]:=Module[{k=n+1},While[HammingDistance[PadLeft[IntegerDigits[ n,2],IntegerLength[ k,2]],IntegerDigits[k,2]]!=4,k++];k]; NestList[ nxt,4,50] (* _Harvey P. Dale_, Nov 07 2020 *) %Y A207460 Cf. A000225, A205509, A205510, A205511, A205302, 205649, A205533, A122565, A206852, A206853, A206960, A207016, A207017. %K A207460 nonn,base %O A207460 1,1 %A A207460 _Vladimir Shevelev_, Feb 18 2012