A124374 Primes of the form !(k + 1)/2 = Sum_{i=0..k} i!/2.
2, 5, 17, 2957, 23117, 204557, 2018957, 4578979328975537786697650470157, 12572230784049013026617689884981971446439568309146114097251787122217783800812199225999909965168264460210470157
Offset: 1
Keywords
Links
- Hisanori Mishima, Factorizations of many number sequences.
- Eric Weisstein's World of Mathematics, Left Factorial.
Programs
-
Mathematica
f=0;Do[f=f+n!;If[PrimeQ[f/2],Print[{n,f/2}]],{n,0,353}]
Comments