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.

A069612 a(1) = 19 (the smallest prime ending in a 9) and a(n+1) = smallest prime ending in a(n).

Original entry on oeis.org

19, 419, 5419, 35419, 435419, 11435419, 111435419, 9111435419, 89111435419, 1389111435419, 81389111435419, 381389111435419, 15381389111435419, 3315381389111435419, 153315381389111435419, 22153315381389111435419, 2022153315381389111435419
Offset: 1

Views

Author

Amarnath Murthy, Mar 27 2002

Keywords

Crossrefs

Programs

  • Mathematica
    w=9; Table[w; i=1; While[PrimeQ[ToExpression[StringJoin[ToString[i], ToString[w]]]]==False, i++ ]; w=ToExpression[StringJoin[ToString[i], ToString[w]]], {32}]
    nxt[n_]:=Module[{c=10^IntegerLength[n],x=1},While[!PrimeQ[c*x+n],x++];c*x+n]; NestList[nxt,19,15] (* Harvey P. Dale, Sep 25 2013 *)
  • Python
    from sympy import isprime
    from itertools import count, islice
    def agen(an=19):
        while True:
            yield an
            pow10 = 10**len(str(an))
            for t in count(pow10+an, step=pow10):
                if isprime(t):
                    an = t
                    break
    print(list(islice(agen(), 17))) # Michael S. Branicky, Jun 23 2022

Extensions

More terms from Hans Havermann, Jun 06 2002