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.

A118586 Numbers whose binary expansion contains group of at least two 1's followed by a nonempty group of 0's.

Original entry on oeis.org

6, 12, 14, 24, 28, 30, 48, 56, 60, 62, 96, 112, 120, 124, 126, 192, 224, 240, 248, 252, 254, 384, 448, 480, 496, 504, 508, 510, 768, 896, 960, 992, 1008, 1016, 1020, 1022, 1536, 1792, 1920, 1984, 2016, 2032, 2040, 2044, 2046, 3072, 3584, 3840, 3968, 4032
Offset: 1

Views

Author

Zak Seidov, May 07 2006

Keywords

Comments

All terms are even.

Examples

			4080_10 = 111111110000_2.
		

Crossrefs

Programs

  • Mathematica
    Sort[Flatten[Table[Sum[2^k,{k,k1,k2}],{k1,1,10},{k2,k1+1,11}]]]
  • Python
    from itertools import count, islice
    def agen(): # generator of terms
        for d in count(3):
            for i in range(2, d):
                yield int("1"*i + "0"*(d-i), 2)
    print(list(islice(agen(), 50))) # Michael S. Branicky, Feb 20 2022

Formula

Sum_{n>=1} 1/a(n) = -1 + A065442. - Amiram Eldar, Feb 20 2022