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.

A065990 Numbers k such that the first k base-5 digits of Pi expressed in decimal forms a prime.

Original entry on oeis.org

1, 6, 102, 131, 230
Offset: 1

Views

Author

Robert G. Wilson v, Dec 10 2001

Keywords

Examples

			The first 6 quinary digits of Pi (A004604) are 303232 = 9817 in decimal, which is a prime.
		

Crossrefs

Cf. A004604.

Programs

  • Mathematica
    Do[ If[ PrimeQ[ FromDigits[ First[ RealDigits[Pi, 5, n]], 5]], Print[n]], {n, 1, 3600} ]