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.

A364239 Indices of records in A363345.

Original entry on oeis.org

1, 4, 9, 30, 401, 87868
Offset: 1

Views

Author

Paolo Xausa, Jul 15 2023

Keywords

Crossrefs

Programs

  • Mathematica
    nn = 1000; s = CellularAutomaton[86, {{1}, 0}, {{nn, 3 nn}, {nn, 2 nn}}]; t = Table[Length[FindRepeat[Diagonal[s, -x]]], {x, 0, nn}]; Map[FirstPosition[t, #][[1]] &, Union@ FoldList[Max, t] ] (* Michael De Vlieger, Jul 25 2023, after Paolo Xausa at A363345 *)