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.

A375084 Indices of records in A375082.

Original entry on oeis.org

1, 12, 22, 38, 46, 94, 158, 213, 321, 382, 766, 1941, 2302, 2558, 7166, 10238, 12286
Offset: 1

Views

Author

Pontus von Brömssen, Jul 29 2024

Keywords

Crossrefs

Cf. A375082.

Programs

  • Python
    from math import comb
    from itertools import islice, count
    def A375084_gen(): # generator of terms
        c = 0
        for n in count(1):
            if (d:=next(a for a, b in (divmod(comb(j,k),n) for j in range(n+1) for k in range(j+1)) if not b))>c:
                c = d
                yield n
    A375084_list = list(islice(A375084_gen(),10)) # Chai Wah Wu, Jul 30 2024