A093674 Primes of the form 5*10^k + 3*R_k, where R_k is the repunit (A002275) of length k.
5, 53, 5333, 53333333333333, 53333333333333333333333333, 53333333333333333333333333333333333333333333333333
Offset: 1
Keywords
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..8
- Makoto Kamada, Prime numbers of the form 533...33.
- Index entries for primes involving repunits
Programs
-
Magma
[a: n in [0..200] | IsPrime(a) where a is (16*10^n-1) div 3 ]; // Vincenzo Librandi, Apr 07 2019
-
Mathematica
Select[Table[FromDigits[PadRight[{5},n,3]],{n,200}],PrimeQ] (* Harvey P. Dale, Jan 14 2012 *)