OFFSET
1,2
COMMENTS
For k > 1, numbers k such that the digit 9 followed by k-2 occurrences of the digit 3 followed by the digits 19 is prime (see Example section).
a(36) > 3*10^5.
LINKS
Makoto Kamada, Search for 93w19.
EXAMPLE
3 is in this sequence because (28*10^3 - 43)/3 = 9319 is prime.
Initial terms and associated primes:
a(1) = 1, 79;
a(2) = 2, 919;
a(3) = 3, 9319;
a(4) = 4, 93319;
a(5) = 5, 933319, etc.
MATHEMATICA
Select[Range[0, 100000], PrimeQ[(28*10^# - 43)/3] &]
PROG
(PARI) lista(nn) = for(n=1, nn, if(ispseudoprime((28*10^n - 43)/3), print1(n, ", "))); \\ Altug Alkan, Apr 05 2016
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Robert Price, Apr 05 2016
EXTENSIONS
a(35) from Robert Price, Jul 02 2023
STATUS
approved