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.

A110781 Number of digits in A110780(n).

Original entry on oeis.org

2, 5, 9, 10, 38, 47, 1279, 11389
Offset: 1

Views

Author

Amarnath Murthy, Aug 12 2005

Keywords

Comments

a(8) > 8000. - Michael S. Branicky, Aug 24 2022

Crossrefs

Programs

  • Python
    from sympy import isprime
    from itertools import count, islice
    def agen(): # generator of terms
        s = ""
        while True:
            for d in "19":
                for k in count(1):
                    if isprime(int(s+d*k)): break
                yield k
                s += d*k
    print(list(islice(agen(), 7))) # Michael S. Branicky, Aug 24 2022

Extensions

More terms from Joshua Zucker, Jan 11 2006
a(7) from Sean A. Irvine, Mar 22 2010
a(8) from Michael S. Branicky, Jun 24 2023