cp's OEIS Frontend

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.

Showing 1-1 of 1 results.

A341910 Lexicographically earliest sequence of distinct nonnegative integers such that for any n >= 0, the number of runs in the binary expansion of n equals the number of ones in the binary expansion of a(n).

Original entry on oeis.org

0, 1, 3, 2, 5, 7, 6, 4, 9, 11, 15, 13, 10, 14, 12, 8, 17, 19, 23, 21, 27, 31, 29, 22, 18, 25, 30, 26, 20, 28, 24, 16, 33, 35, 39, 37, 43, 47, 45, 38, 46, 55, 63, 59, 51, 61, 53, 41, 34, 42, 54, 44, 57, 62, 58, 49, 36, 50, 60, 52, 40, 56, 48, 32, 65, 67, 71, 69
Offset: 0

Views

Author

Rémy Sigrist, Feb 23 2021

Keywords

Comments

This sequence is a permutation of the nonnegative integers with inverse A341911.
Apparently, A037481 corresponds to the fixed points of this sequence.

Examples

			The first terms, in decimal and in binary, are:
  n   a(n)  bin(n)   bin(a(n))
  --  ----  -------  ---------
   0     0        0          0
   1     1        1          1
   2     3       10         11
   3     2       11         10
   4     5      100        101
   5     7      101        111
   6     6      110        110
   7     4      111        100
   8     9     1000       1001
   9    11     1001       1011
  10    15     1010       1111
		

Crossrefs

Programs

  • Mathematica
    Block[{a = {0}, k}, Do[k = 1; While[Nand[FreeQ[a, k], DigitCount[k, 2, 1] == #], k++] &@ Length[Split@ IntegerDigits[i, 2]]; AppendTo[a, k], {i, 67}]; a] (* Michael De Vlieger, Feb 24 2021 *)
  • PARI
    See Links section.

Formula

A005811(n) = A000120(a(n)).
a(n) < 2^k for any n < 2^k.
Showing 1-1 of 1 results.