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.

A367627 a(n) = log_2(A367626(n)).

Original entry on oeis.org

0, 1, 1, 1, 2, 1, 1, 2, 1, 1, 2, 1, 1, 3, 2, 1, 1, 2, 1, 1, 2, 1, 1, 3, 2, 1, 1, 2, 1, 1, 2, 1, 1, 3, 2, 1, 1, 2, 1, 1, 2, 1, 1, 4, 3, 2, 1, 1, 3, 2, 1, 1, 2, 1, 1, 2, 1, 1, 3, 2, 1, 1, 2, 1, 1, 2, 1, 1, 3, 2, 1, 1, 2, 1, 1, 2, 1, 1, 4, 3, 2, 1, 1, 3, 2, 1, 1, 2
Offset: 1

Views

Author

N. J. A. Sloane, Nov 25 2023

Keywords

Comments

First differences of A036991 are powers of 2 (see A036991 and A367626).

Crossrefs

Programs

  • Python
    from itertools import count, islice
    def A367627_gen(): # generator of terms
        a = 0
        yield 0
        for n in count(1):
            s = bin(n)[2:]
            c, l = 2, len(s)
            for i in range(1,l+1):
                if (c:=c+(2 if s[l-i]=='1' else 0)) <= i:
                    break
            else:
                yield (n-a).bit_length()
                a = n
    A367627_list = list(islice(A367627_gen(),30)) # Chai Wah Wu, Nov 28 2023