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.

A362398 Records in A336830.

Original entry on oeis.org

0, 1, 2, 5, 9, 10, 11, 20, 30, 91, 168, 1353, 4810, 5633, 18318, 113469, 309843, 2472166, 8986945, 14851612, 37245096, 126623277, 303214904, 332037001, 471378040, 2479371748, 7480271673, 19360939770, 63777083760, 86507687515, 660840240360, 705786898152
Offset: 1

Views

Author

Michael S. Branicky, Apr 18 2023

Keywords

Crossrefs

Cf. A336830, A362399 (positions of records).

Programs

  • Python
    # uses generator in A336830
    from itertools import count, islice
    def agen(r=-1): yield from (r:=v for v in A336830() if v > r)
    print(list(islice(agen(), 32)))