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.

A038805 Difference between last prime < 10^n and 10^n is a record high.

Original entry on oeis.org

1, 4, 9, 21, 24, 34, 56, 66, 92, 100, 112, 117, 135, 180, 260, 349, 387, 393, 411, 574, 617, 787, 1209
Offset: 1

Views

Author

Keywords

Examples

			For a(19)=411, the difference is 4433 and no other n <= 540 exceeds that difference.
		

Crossrefs

Cf. A033874.

Programs

  • Mathematica
    PrevPrim[n_] := Block[{k = n - 1}, While[ !PrimeQ[k], k-- ]; k]; d = 0; k = 1; Do[ While[f = 10^k - PrevPrim[10^k]; d >= f, k++ ]; d = f; Print[k], {n, 1, 50}]

Extensions

Edited and extended by Robert G. Wilson v, Jun 18 2002
a(23) from Robert G. Wilson v, Jan 10 2007