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.

A101592 Smallest and largest of the n-digit primes.

Original entry on oeis.org

2, 7, 11, 97, 101, 997, 1009, 9973, 10007, 99991, 100003, 999983, 1000003, 9999991, 10000019, 99999989, 100000007, 999999937, 1000000007, 9999999967, 10000000019, 99999999977, 100000000003, 999999999989, 1000000000039, 9999999999971, 10000000000037
Offset: 1

Views

Author

Parthasarathy Nambi, Jan 26 2005

Keywords

Examples

			2 is the smallest 1-digit prime and 7 is the largest 1-digit prime.
100003 is the smallest 6-digit prime and 999983 is the largest 6-digit prime.
		

Crossrefs

Programs

  • Mathematica
    Table[{NextPrime[10^n],NextPrime[10^(n+1),-1]},{n,0,15}]//Flatten (* Harvey P. Dale, Jun 04 2019 *)