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.

A179623 Collatz trajectory starting at 3711.

Original entry on oeis.org

3711, 11134, 5567, 16702, 8351, 25054, 12527, 37582, 18791, 56374, 28187, 84562, 42281, 126844, 63422, 31711, 95134, 47567, 142702, 71351, 214054, 107027, 321082, 160541, 481624, 240812, 120406, 60203, 180610, 90305, 270916, 135458, 67729
Offset: 1

Views

Author

Keywords

Crossrefs

Cf. A161021.

Programs

  • Mathematica
    f[n_] := If[ OddQ@n, 3 n + 1, n/2]; NestWhileList[f, 3711, # > 1 &] (* modified by Robert G. Wilson v, Aug 23 2010 *)