A037082 Primes of the form k!!! + 1.
2, 3, 5, 11, 19, 29, 163, 281, 881, 209441, 264539521, 72642169601, 9927882482918401, 26582634158080001, 141383412854531380076544001, 427380210218181008588800001, 2295148179742698933452800001, 191433282535027132859721811688265047080960000001
Offset: 1
Keywords
Examples
11!!! + 1 = 11*8*5*2 + 1 = 881 is prime.
Links
Programs
-
Mathematica
Select[Table[Times@@Range[n,1,-3]+1,{n,60}],PrimeQ] (* Harvey P. Dale, Jul 09 2014 *)