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.

A272621 Numbers n such that 10^n-9^(n-1) is prime.

Original entry on oeis.org

3, 9, 15, 155, 217, 281, 287, 491, 563, 581, 983, 2243, 4375, 8409, 98669
Offset: 1

Views

Author

Robert Price, May 03 2016

Keywords

Comments

a(16) > 10^5.

Examples

			3 is a member since 10^3-9^2 = 1000-81 = 919 which is a prime number.
		

Crossrefs

Programs

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