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.

A273868 Numbers k such that 10^k - 9^(k+1) is prime.

Original entry on oeis.org

25, 51, 91, 107, 145, 651, 1473, 2145, 5577, 12457
Offset: 1

Views

Author

Robert Price, Jun 01 2016

Keywords

Comments

a(11) > 10^5.

Examples

			25 is a term since 10^25 - 9^26 = 3538918110773326701067759, which is a prime number.
		

Crossrefs

Programs

  • Mathematica
    Select[Range[21, 100000], PrimeQ[10^# - 9^(# + 1)] &]
  • PARI
    is(n)=ispseudoprime(10^n-9^(n+1)) \\ Charles R Greathouse IV, Jun 08 2016