OFFSET
1,2
COMMENTS
For k > 1, numbers k such that k-2 occurrences of the digit 3 followed by the digits 67 is prime (see Example section).
a(35) > 2*10^5.
LINKS
Makoto Kamada, Factorization of near-repdigit-related numbers.
Makoto Kamada, Search for 3w67.
EXAMPLE
3 is in this sequence because (10^3+101)/3 = 367 is prime.
Initial terms and associated primes:
a(1) = 1, 37;
a(2) = 2, 67;
a(3) = 3, 367;
a(4) = 6, 333367;
a(5) = 9, 333333367, etc.
MATHEMATICA
Select[Range[0, 100000], PrimeQ[(10^#+101)/3] &]
PROG
(PARI) lista(nn) = for(n=1, nn, if(ispseudoprime((10^n+101)/3), print1(n, ", "))); \\ Altug Alkan, Apr 16 2016
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Robert Price, Apr 16 2016
STATUS
approved