OFFSET
1,2
COMMENTS
For k > 1, numbers k such that the digits 48 followed by k-1 occurrences of the digit 4 followed by the digit 3 is prime (see Example section).
a(23) > 2*10^5.
LINKS
Makoto Kamada, Factorization of near-repdigit-related numbers.
Makoto Kamada, Search for 484w3.
EXAMPLE
5 is in this sequence because (436*10^5 - 13)/9 = 4844443 is prime.
Initial terms and associated primes:
a(1) = 0, 47;
a(2) = 5, 4844443;
a(3) = 8, 4844444443;
a(4) = 9, 48444444443;
a(5) = 12, 48444444444443; etc.
MATHEMATICA
Select[Range[0, 100000], PrimeQ[(436*10^# - 13)/9] &]
CROSSREFS
KEYWORD
nonn,more,hard
AUTHOR
Robert Price, Oct 19 2017
STATUS
approved