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.

A111937 Integers k such that ceiling(Pi^k) is prime.

Original entry on oeis.org

5, 29, 88, 948, 1071, 1100, 1578, 14357
Offset: 1

Views

Author

Ray G. Opao, Nov 27 2005

Keywords

Examples

			a(1)=5: ceiling(3.14159265...^5) = ceiling(306.0196847...) = 307, which is prime.
		

Crossrefs

Cf. A001673.

Programs

  • Mathematica
    $MaxExtraPrecision = 2^20; Do[ If[ PrimeQ[ Ceiling[Pi^n]], Print[n]], {n, 10000}] (* Robert G. Wilson v, Nov 28 2005 *)

Extensions

a(5)-a(7) from Robert G. Wilson v, Nov 28 2005
a(8) from Donovan Johnson, Feb 04 2008