OFFSET
1,2
COMMENTS
For k > 1, numbers k such that the digit 6 followed by k-2 occurrences of the digit 1 followed by the digits 53 is prime (see Example section).
a(23) > 2*10^5.
LINKS
Makoto Kamada, Factorization of near-repdigit-related numbers.
Makoto Kamada, Search for 61w53.
EXAMPLE
2 is in this sequence because (55*10^2 + 377)/9 = 653 is prime.
Initial terms and associated primes:
a(1) = 1, 103;
a(2) = 2, 653;
a(3) = 4, 61153;
a(4) = 20, 611111111111111111153;
a(5) = 40, 61111111111111111111111111111111111111153; etc.
MATHEMATICA
Select[Range[0, 100000], PrimeQ[(55*10^# + 377)/9] &]
CROSSREFS
KEYWORD
nonn,more,hard
AUTHOR
Robert Price, Oct 25 2017
EXTENSIONS
a(22) from Robert Price, Feb 27 2019
STATUS
approved