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.

A110783 Number of digits in A110782(n).

Original entry on oeis.org

2, 1, 3, 3, 2, 8, 21, 102, 25, 726, 954, 16522, 2939, 10691, 8157
Offset: 1

Views

Author

Amarnath Murthy, Aug 12 2005

Keywords

Comments

a(12) > 7300. - 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 "1379":
                for k in count(1):
                    if isprime(int(s+d*k)): break
                yield k
                s += d*k
    print(list(islice(agen(), 11))) # Michael S. Branicky, Aug 24 2022

Extensions

More terms from Joshua Zucker, Jan 11 2006
a(11) from Sean A. Irvine, Mar 22 2010
a(12)-a(15) from Michael S. Branicky, Oct 14 2024