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 A309668 #17 Aug 16 2019 15:14:41 %S A309668 1,2,5,4,3,10,9,8,7,6,11,21,19,18,17,16,15,14,13,12,24,23,22,42,20,39, %T A309668 37,36,35,34,33,32,31,30,29,28,27,26,52,25,49,48,47,46,45,44,43,85,41, %U A309668 40,80,78,38,75,74,73,71,70,69,68,67,66,65,64,63,62,61 %N A309668 a(n) is the least positive number of the form floor(2^k/n) for some k >= 0 not yet in the sequence. %C A309668 The sequence is well defined as for any n > 0, there are infinitely many positive numbers of the form floor(2^k/n) with k >= 0. %C A309668 The sequence is a permutation of the natural numbers, with inverse A309734: %C A309668 - for any m > 0, floor(2^k/A300475(m)) = m for some k, %C A309668 - also, for any u > 0, floor(2^(k-u)/(A300475(m)*2^u)) = m, %C A309668 - so the set S_m = { v such that floor(2^k/v) = m for some k >= 0 } is infinite %C A309668 - and eventually a(n) = m for some n in S_m, QED. %H A309668 Rémy Sigrist, <a href="/A309668/b309668.txt">Table of n, a(n) for n = 1..10000</a> %H A309668 Rémy Sigrist, <a href="/A309668/a309668.png">Colored representation of the first 2^16 terms</a> (where the color is function of the parity of A070939(n) - A070939(a(n))) %H A309668 <a href="/index/Per#IntegerPermutation">Index entries for sequences that are permutations of the natural numbers</a> %e A309668 The first terms, alongside the binary representations of a(n) and of 1/n (with that of a(n) in parentheses), are: %e A309668 -- ---- --------- --------------------- %e A309668 1 1 1 (1).00000000000000... %e A309668 2 2 10 0.(10)000000000000... %e A309668 3 5 101 0.0(101)0101010101... %e A309668 4 4 100 0.0(100)0000000000... %e A309668 5 3 11 0.00(11)0011001100... %e A309668 6 10 1010 0.00(1010)10101010... %e A309668 7 9 1001 0.00(1001)00100100... %e A309668 8 8 1000 0.00(1000)00000000... %e A309668 9 7 111 0.000(111)00011100... %e A309668 10 6 110 0.000(110)01100110... %e A309668 11 11 1011 0.000(1011)1010001... %e A309668 12 21 10101 0.000(10101)010101... %e A309668 13 19 10011 0.000(10011)101100... %e A309668 14 18 10010 0.000(10010)010010... %e A309668 15 17 10001 0.000(10001)000100... %o A309668 (PARI) s=1; for (n=1, 67, q=1/n; while (bittest(s, f=floor(q)), q*=2); print1 (f ", "); s+=2^f) %Y A309668 Cf. A070939, A300475, A309734 (inverse). %K A309668 nonn,look,base %O A309668 1,2 %A A309668 _Rémy Sigrist_, Aug 11 2019