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.

A043682 a(n) = (1/2)*(n-th number whose base-2 representation has exactly 4 runs).

Original entry on oeis.org

5, 9, 10, 11, 13, 17, 18, 19, 20, 22, 23, 25, 26, 27, 29, 33, 34, 35, 36, 38, 39, 40, 44, 46, 47, 49, 50, 51, 52, 54, 55, 57, 58, 59, 61, 65, 66, 67, 68, 70, 71, 72, 76, 78, 79, 80, 88, 92, 94, 95, 97, 98, 99, 100, 102, 103, 104, 108, 110
Offset: 1

Views

Author

Keywords

Comments

Numbers with exactly two runs of 1's in binary. - Franklin T. Adams-Watters, Dec 09 2013

Crossrefs

Programs

  • Mathematica
    Select[Range[250],Length[Split[IntegerDigits[#,2]]]==4&]/2 (* Harvey P. Dale, Aug 25 2016 *)
  • PARI
    runs(n)=my(s);while(n, n>>=valuation(if(n%2,n+1,n),2);s++); s
    is(n)=runs(n>>valuation(n,2))==3 \\ Charles R Greathouse IV, Dec 09 2013