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.

A127890 Largest n-digit right-truncatable prime.

Original entry on oeis.org

7, 79, 797, 7393, 73939, 739399, 7393933, 73939133
Offset: 1

Views

Author

Ray Chandler, Feb 04 2007

Keywords

Comments

For a variant see the Howard reference. - Alexander R. Povolotsky, Dec 23 2007
Right-truncatable means that the integer part of successive divisions by 10 always yields primes (or zero). - M. F. Hasler, Nov 07 2018

References

  • Toby Howard, "Magic Pi - The Magic of Numbers", PC Advisor magazine, May 1998.

Crossrefs

Programs

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