login

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

A288408
Primes of the form k!2+32, where k!2 is the double factorial number (A006852).
1
47, 137, 977, 10427, 2027057, 13749310607, 6332659870762850657, 13113070457687988603440657, 563862029680583509947946907, 25373791335626257947657609407, 488960130368663401543922783473071784646213671907
OFFSET
1,1
LINKS
MATHEMATICA
MultiFactorial[n_, k_] := If[n<1, 1, n*MultiFactorial[n-k, k]];
Select[Table[MultiFactorial[i, 2] + 32, {i, 0, 100}], PrimeQ[#]&]
CROSSREFS
Cf. A076190.
Sequence in context: A350863 A253225 A039530 * A095311 A005112 A355727
KEYWORD
nonn
AUTHOR
Robert Price, Jun 08 2017
STATUS
approved