A322606 Primes of form 9753197531... .
97, 9753197, 97531975319, 97531975319753197, 975319753197531975319
Offset: 1
Links
- Seiichi Manyama, Table of n, a(n) for n = 1..6
Programs
-
Mathematica
Select[Table[FromDigits[PadRight[{},n,{9,7,5,3,1}]],{n,30}],PrimeQ] (* Harvey P. Dale, Jul 13 2021 *)
-
PARI
for(n=2,1e3, if(isprime(t=10^n*97531\99999), print1(t", "))) \\ Charles R Greathouse IV, Dec 09 2024
Comments