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.

A328870 Numbers whose lengths of runs of 1's in their reversed binary expansion are not weakly increasing.

Original entry on oeis.org

11, 19, 22, 23, 35, 38, 39, 43, 44, 45, 46, 47, 55, 67, 70, 71, 75, 76, 77, 78, 79, 83, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 103, 107, 110, 111, 131, 134, 135, 139, 140, 141, 142, 143, 147, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 163, 166, 167
Offset: 1

Views

Author

Gus Wiseman, Nov 12 2019

Keywords

Examples

			The sequence of terms together with their reversed binary expansions begins:
  11: (1101)
  19: (11001)
  22: (01101)
  23: (11101)
  35: (110001)
  38: (011001)
  39: (111001)
  43: (110101)
  44: (001101)
  45: (101101)
  46: (011101)
  47: (111101)
  55: (111011)
  67: (1100001)
  70: (0110001)
  71: (1110001)
  75: (1101001)
  76: (0011001)
  77: (1011001)
  78: (0111001)
		

Crossrefs

Complement of A328869.
The version for prime indices is A112769.
The binary expansion of n has A069010(n) runs of 1's.

Programs

  • Mathematica
    Select[Range[100],!LessEqual@@Length/@Split[Join@@Position[Reverse[IntegerDigits[#,2]],1],#2==#1+1&]&]