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.

A178437 Numbers n such that 10^n - 81 is prime.

Original entry on oeis.org

2, 3, 17, 19, 31, 37, 43, 91, 339, 367, 407, 1135, 1175, 8653, 11987, 15793
Offset: 1

Views

Author

Robert Price, Dec 21 2010

Keywords

Comments

The next term, if one exists, is >100000. - Robert Price, Apr 25 2011

Examples

			10^3 - 81 = 919 which is a prime number.
		

Crossrefs

Programs

  • Mathematica
    nMax=1000; Do[If[PrimeQ[10^n-81], Print[n]], {n, nMax}]
  • PARI
    is(n)=ispseudoprime(10^n-81) \\ Charles R Greathouse IV, Jun 13 2017