OFFSET
1,1
LINKS
Makoto Kamada, Prime numbers of the form 311...11.
H. C. Williams, Some primes with interesting digit patterns, Math. Comp. vol 32 no 144 (1978) pp 1306-1310, Table 2, r=3.
EXAMPLE
Digit 3 followed by rep-units of length 1,2,5,10,11,13,34,47,52,77,88,...
MATHEMATICA
Select[Table[FromDigits[PadRight[{3}, n, 1]], {n, 2, 100}], PrimeQ] (* Harvey P. Dale, Nov 18 2012 *)
PROG
(PARI) for(n=1, 200, if(isprime(3*10^n+(10^(n)-1)/9)==1, print1(3*10^n+(10^(n)-1)/9, ", ")))
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Amarnath Murthy, Mar 07 2002
EXTENSIONS
More terms from Benoit Cloitre, Mar 09 2002
One additional term from Harvey P. Dale, Nov 18 2012
STATUS
approved