A093946 Primes of the form 6*10^k - 1.
5, 59, 599, 59999, 599999, 59999999, 59999999999, 59999999999999, 59999999999999999999999, 599999999999999999999999, 59999999999999999999999999999, 59999999999999999999999999999999999
Offset: 1
Keywords
Links
Programs
-
Magma
[a: n in [0..200] | IsPrime(a) where a is (6*10^n-1)]; // Vincenzo Librandi, May 08 2019
-
Mathematica
Select[Table[FromDigits[PadRight[{5},n,9]],{n,40}],PrimeQ] (* Harvey P. Dale, Jun 06 2016 *)
Comments