OFFSET
1,2
COMMENTS
For k > 1, numbers k such that the digit 5 followed by k-2 occurrences of the digit 3 followed by the digits 27 is prime (see Example section).
a(40) > 2*10^5.
LINKS
Makoto Kamada, Search for 53w27.
EXAMPLE
4 is in this sequence because (16*10^4 - 19)/3 = 53327 is prime.
Initial terms and associated primes:
a(1) = 1, 47;
a(2) = 4, 53327;
a(3) = 5, 533327;
a(4) = 6, 5333327;
a(5) = 10, 53333333327;
a(6) = 13, 53333333333327, etc.
MATHEMATICA
Select[Range[0, 100000], PrimeQ[(16*10^# - 19)/3] &]
PROG
(PARI) lista(nn) = {for(n=1, nn, if(ispseudoprime((16*10^n - 19)/3), print1(n, ", "))); } \\ Altug Alkan, Mar 31 2016
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Robert Price, Mar 31 2016
EXTENSIONS
a(37)-a(39) from Robert Price, Feb 23 2019
STATUS
approved