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.

A079367 Records in A079366.

Original entry on oeis.org

11, 17, 23, 97, 107, 127, 409, 58889
Offset: 1

Views

Author

N. J. A. Sloane, Feb 15 2003

Keywords

Comments

RECORDS transform of A079366.

Crossrefs

Programs

  • Mathematica
    A079366 = Cases[Import["https://oeis.org/A079366/b079366.txt", "Table"], {, }][[All, 2]];
    a = {}; l = 0;
    For[i = 1, i <= Length[A079366], i++,
      If[A079366[[i]] > l, l = A079366[[i]]; AppendTo[a, l]]];
    a (* Robert Price, Mar 14 2020 *)