login

Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.

A202423
Numbers n such that n!*n!! + 1 is prime.
0
1, 2, 3, 4, 5, 14, 37, 48, 50, 52, 88, 223
OFFSET
1,2
EXAMPLE
For n = 3, 3!*3!! + 1 = 6*3 + 1 = 19 is prime.
MATHEMATICA
lst={}; Do[If[PrimeQ[n!*n!!+1], AppendTo[lst, n]], {n, 500}]; lst
CROSSREFS
KEYWORD
nonn
AUTHOR
Michel Lagneau, Dec 19 2011
STATUS
approved