A139071 Numbers k for which (10+k!)/10 is prime.
5, 6, 11, 12, 15, 23, 26, 37, 45, 108, 112, 129, 137, 148, 172, 248, 760, 807, 975, 1398, 5231, 8765, 24182
Offset: 1
Keywords
Crossrefs
Programs
-
Mathematica
a = {}; Do[If[PrimeQ[(n! + 10)/10], AppendTo[a, n]], {n, 1, 500}]; a
-
PARI
for(k=5,1e3,if(ispseudoprime(k!/10+1),print1(k", "))) \\ Charles R Greathouse IV, Jul 15 2011
Extensions
More terms from Serge Batalov, Feb 18 2015
a(22)-a(23) from Robert Price, Nov 08 2016
Comments