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.

A359222 Number of steps to reach 0 from A359221(n) (Starting numbers that reach a new record high value during iteration by the map x->A359194(x)).

Original entry on oeis.org

0, 1, 2, 11, 80, 7572, 664475, 3180929, 120796790, 556068798, 1246707529, 87037147316
Offset: 1

Views

Author

Joshua Searle, Dec 29 2022

Keywords

Comments

a(12) found by Tom Duff (26 Dec 2022).
It is unknown whether all starting numbers reach 0.

Examples

			a(4) is the step count from the starting number A359221(4) = 3: (3, 6, 13, 24, 55, 90, 241, 300, 123, 142, 85, 0) -- 11 steps, hence a(4) = 11.
		

Crossrefs

Programs

  • Python
    from itertools import count, islice
    def f(n): return 1 if n == 0 else (m:=3*n)^((1 << m.bit_length())-1)
    def itersmax(n):
        i, fi, m = 0, n, n
        while fi != 0: i, fi, m = i+1, f(fi), max(m, fi)
        return i, m
    def agen(): # generator of terms
        record = -1
        for m in count(0):
            v, mx = itersmax(m)
            if mx > record:
                yield v # use m to obtain starting numbers
                record = mx
    print(list(islice(agen(), 8))) # Michael S. Branicky, Dec 29 2022