A262195 Primes that are the concatenation of 1, k! and 1, for some integer k.
150401, 13628801, 136288001, 113076743680001
Offset: 1
Examples
For n = 1, k = 7, 7! = 5040, and a(1) = 150401 is a prime number.
Programs
-
Magma
[m: n in [1..1000] | IsPrime(m) where m is Seqint(Intseq(1) cat Intseq(Factorial(n)) cat Intseq(1))]; // Vincenzo Librandi, Sep 15 2015
-
Mathematica
Select[Table[FromDigits[Flatten[{(1), IntegerDigits[n!], {1}}]], {n, 1000}], PrimeQ] (* Vincenzo Librandi, Sep 15 2015 *)
-
PARI
for(n=1, 1e3, if(isprime(k=eval(Str(1,n!,1))), print1(k", ")))
Comments