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.

A285377 Numbers k such that (41*10^k + 373)/9 is prime.

Original entry on oeis.org

3, 5, 6, 9, 11, 53, 105, 125, 137, 228, 789, 1259, 1661, 1697, 1785, 3737, 6054, 7614, 11819, 27366, 28320, 48678, 69321, 76067, 97085
Offset: 1

Views

Author

Robert Price, Apr 17 2017

Keywords

Comments

For k > 1, numbers k such that the digit 4 followed by k-2 occurrences of the digit 5 followed by the digits 97 is prime (see Example section).
a(26) > 2*10^5.

Examples

			5 is in this sequence because (41*10^5 + 373)/9 = 455597 is prime.
Initial terms and associated primes:
a(1) = 3, 4597;
a(2) = 5, 455597;
a(3) = 6, 4555597;
a(4) = 9, 4555555597;
a(5) = 11, 455555555597; etc.
		

Crossrefs

Programs

  • Mathematica
    Select[Range[0, 100000], PrimeQ[(41*10^# + 373)/9] &]