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.

A272622 Numbers k such that 9*10^k + 19 is prime.

Original entry on oeis.org

1, 2, 4, 5, 10, 14, 25, 34, 40, 63, 74, 129, 149, 345, 370, 425, 477, 627, 951, 1610, 2564, 2689, 4227, 7300, 7444, 8360, 16541, 21187, 25685, 31803, 89858, 92821
Offset: 1

Views

Author

Robert Price, May 03 2016

Keywords

Comments

For k > 1, numbers k such that the digit 9 followed by k-2 occurrences of the digit 0 followed by the digits 19 is prime (see Example section).
a(33) > 3*10^5.

Examples

			4 is in this sequence because 9*10^4+19 = 90019 is prime.
Initial terms and associated primes:
a(1) = 1, 109;
a(2) = 2, 919;
a(3) = 4, 90019;
a(4) = 5, 900019;
a(5) = 10, 90000000019, etc.
		

Crossrefs

Programs

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