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.

A375094 a(n) is the least number not occurring in a Collatz trajectory of n steps.

Original entry on oeis.org

2, 3, 3, 3, 3, 3, 3, 6, 7, 7, 7, 7, 7, 7, 7, 7, 9, 9, 9, 18, 25, 25, 25, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27
Offset: 0

Views

Author

Markus Sigg and Hugo Pfoertner, Aug 03 2024

Keywords

Comments

A006877 and A288493 form a run-length encoding of this sequence: It starts with A288493(1) copies of A006877(2), followed by A288493(2) copies of A006877(3), followed by A288493(3) copies of A006877(4), and so on.

Examples

			a(5) = 3 because there are two trajectories with 5 steps, namely (32,16,8,4,2,1) and (5,16,8,4,2,1). 3 is the smallest number not appearing in both.
		

Crossrefs

Programs

  • Python
    # output in b-file format
    from itertools import count
    n = 0
    for k in count():
        m = k
        s = 0
        while m > 1:
            m = m // 2 if m % 2 == 0 else 3*m+1
            s += 1
        while n < s:
            print(n, k, flush=True)
            n += 1