OFFSET
1,2
COMMENTS
For k > 1, numbers k such that the digit 7 followed by k-2 occurrences of the digit 0 followed by the digits 61 is prime (see Example section).
a(27) > 3*10^5.
LINKS
Makoto Kamada, Factorization of near-repdigit-related numbers.
Makoto Kamada, Search for 70w61.
EXAMPLE
4 is in this sequence because 7*10^4 + 61 = 70061 is prime.
Initial terms and associated primes:
a(1) = 1, 131;
a(2) = 2, 761;
a(3) = 4, 70061;
a(4) = 6, 7000061;
a(5) = 9, 7000000061; etc.
MATHEMATICA
Select[Range[0, 100000], PrimeQ[7*10^# + 61] &]
PROG
(PARI) isok(k) = isprime(7*10^k + 61); \\ Michel Marcus, Feb 04 2017
CROSSREFS
KEYWORD
nonn,more,hard
AUTHOR
Robert Price, Feb 04 2017
EXTENSIONS
a(25) from Robert Price, Aug 20 2019
STATUS
approved