login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A258933
Numbers k such that 10^k + 109 is prime.
1
3, 5, 41, 357, 395, 479, 645, 2637, 8853, 11529, 20087, 27443, 30635
OFFSET
1,1
COMMENTS
a(14) > 50000. - Michael S. Branicky, Oct 13 2024
EXAMPLE
For n = 3, a(3) = 10^3 + 109 = 1109, which is prime.
MATHEMATICA
Select[Range[3000], PrimeQ[10^# + 109] &]
PROG
(Magma) [n: n in [1..400] | IsPrime(10^n+109)];
(PARI) is(n)=ispseudoprime(10^n+109) \\ Charles R Greathouse IV, Jun 13 2017
CROSSREFS
Cf. similar sequences listed in A258932.
Sequence in context: A096058 A120265 A158328 * A060433 A216085 A219018
KEYWORD
nonn,more
AUTHOR
Vincenzo Librandi, Jun 15 2015
EXTENSIONS
a(9)-a(13) from Jens Kruse Andersen, Jun 23 2015
STATUS
approved