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.

A209250 Numbers n such that (2^64 - 189)*10^n + 1 is prime.

Original entry on oeis.org

38, 214, 425, 557, 713, 1322, 1330, 5061, 19090, 19876, 31954, 41012, 53924, 94455, 124516, 127326, 413500, 476124
Offset: 1

Views

Author

Edward A. Trice, Jan 13 2013

Keywords

Comments

The prime (2^64 - 189)*10^476124 + 1 has 476144 digits.

Examples

			38 is in the sequence since (2^64 - 189)*10^38 + 1 is prime.
10 is not in the sequence since (2^64 - 189)*10^10 + 1 = 83639*2205519443526291733162759 is composite.
		

Programs

  • Mathematica
    Select[Range[725], PrimeQ[(2^64 - 189)*10^# + 1] &] (* G. C. Greubel, Jan 05 2018 *)
  • PARI
    is(n)=ispseudoprime((2^64-189)*10^n+1) \\ Charles R Greathouse IV, Jun 13 2017