OFFSET
1,2
COMMENTS
For k > 1, numbers k such that the digit 6 followed by k-2 occurrences of the digit 9 followed by the digits 53 is prime (see Example section).
a(34) > 3*10^5.
LINKS
Makoto Kamada, Factorization of near-repdigit-related numbers.
Makoto Kamada, Search for 69w53.
EXAMPLE
2 is in this sequence because 7*10^2 - 47 = 653 is prime.
Initial terms and associated primes:
a(1) = 1, 23;
a(2) = 2, 653;
a(3) = 5, 699953;
a(4) = 8, 699999953;
a(5) = 11, 699999999953; etc.
MATHEMATICA
Select[Range[1, 100000], PrimeQ[7*10^# - 47] &]
CROSSREFS
KEYWORD
nonn,more,hard
AUTHOR
Robert Price, Feb 15 2017
EXTENSIONS
Reordered terms into ascending order by Robert Price, Apr 01 2022
a(33) from Robert Price, Oct 25 2023
STATUS
approved