OFFSET
1,2
COMMENTS
For k > 1, numbers k such that the digit 3 followed by k-2 occurrences of the digit 0 followed by the digits 73 is prime (see Example section).
a(37) > 2*10^5.
LINKS
Makoto Kamada, Factorization of near-repdigit-related numbers.
Makoto Kamada, Search for 30w73.
EXAMPLE
5 is in this sequence because 3*10^5 + 73 = 300073 is prime.
Initial terms and associated primes:
a(1) = 1, 103;
a(2) = 2, 373;
a(3) = 5, 300073;
a(4) = 6, 3000073;
a(5) = 13, 30000000000073, etc.
MATHEMATICA
Select[Range[0, 100000], PrimeQ[3*10^# + 73] &]
PROG
(PARI) is(n)=ispseudoprime(3*10^n + 73) \\ Charles R Greathouse IV, Jun 13 2017
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Robert Price, Apr 11 2016
EXTENSIONS
a(34)-a(36) from Robert Price, Aug 10 2018
STATUS
approved