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.

A127889 Smallest n-digit right-truncatable prime.

Original entry on oeis.org

2, 23, 233, 2333, 23333, 233993, 2339933, 23399339
Offset: 1

Views

Author

Ray Chandler, Feb 04 2007

Keywords

Comments

Agrees with A088603 for 8 terms, but this sequence ends there while A088603 continues.
Right-truncatable means that the integer part of successive divisions by 10 always yields primes (or zero). - M. F. Hasler, Nov 07 2018

Crossrefs

Programs

  • PARI
    A127889=vector(8, n, p=concat(apply(t->primes([t, t+1]*10), if(n>1, p))); p[1]) \\ M. F. Hasler, Nov 07 2018