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.

A271361 Numbers k such that 63*10^k + 1 is prime.

Original entry on oeis.org

1, 2, 12, 21, 27, 30, 33, 44, 46, 76, 78, 83, 84, 92, 582, 750, 787, 3218, 3290, 5617, 6385, 13960, 22705, 27636, 36497, 50349, 51169, 70381, 70486, 73096
Offset: 1

Views

Author

Robert Price, Apr 05 2016

Keywords

Comments

Numbers k such that the digits 63 followed by k-1 occurrences of the digit 0 followed by the digit 1 is prime (see Example section).
a(31) > 10^5.

Examples

			2 is in this sequence because 63*10^2+1 = 6301 is prime.
Initial terms and associated primes:
a(1) = 1, 631;
a(2) = 2, 6301;
a(3) = 12, 63000000000001;
a(4) = 21, 63000000000000000000001;
a(5) = 27, 63000000000000000000000000001, etc.
		

Crossrefs

Programs

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