OFFSET
1,2
COMMENTS
For k > 1, numbers k such that the digit 3 followed by k-2 occurrences of the digit 6 followed by the digits 83 is prime (see Example section).
a(32) > 3*10^5.
LINKS
Makoto Kamada, Factorization of near-repdigit-related numbers.
Makoto Kamada, Search for 36w83.
EXAMPLE
4 is in this sequence because (11*10^4 + 49)/3 = 36683 is prime.
Initial terms and associated primes:
a(1) = 1, 53;
a(2) = 2, 383:
a(3) = 4, 36683;
a(4) = 5, 366683;
a(5) = 7, 36666683, etc.
MATHEMATICA
Select[Range[0, 100000], PrimeQ[(11*10^# + 49)/3] &]
PROG
(PARI) is(n)=ispseudoprime((11*10^n + 49)/3) \\ Charles R Greathouse IV, Jun 13 2017
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Robert Price, May 12 2016
EXTENSIONS
a(31) from Robert Price, Jul 19 2018
STATUS
approved