%I #6 Sep 03 2022 21:02:19
%S 13,103,2027023,34459423,654729073,2980227913743310874726229193921873,
%T 174865344543353986303948473285124243127671456831640623,
%U 352999527454840466971061863960307904899505075341088595453568994140623
%N Primes of the form k!2-2, where k!2 is the sextuple factorial number (A085158).
%H Robert Price, <a href="/A289859/b289859.txt">Table of n, a(n) for n = 1..10</a>
%H Henri & Renaud Lifchitz, <a href="http://www.primenumbers.net/prptop/searchform.php?form=n2-2&action=Search">PRP Records.Search for n!2-2.</a>
%H Joe McLean, <a href="http://web.archive.org/web/20091027034731/http://uk.geocities.com/nassarawa%40btinternet.com/probprim2.htm">Interesting Sources of Probable Primes</a>
%H OpenPFGW Project, <a href="http://sourceforge.net/projects/openpfgw/">Primality Tester</a>
%t MultiFactorial[n_, k_] := If[n<1, 1, n*MultiFactorial[n-k, k]];
%t Select[Table[MultiFactorial[i, 2] - 2, {i, 3, 100}], PrimeQ[#]&]
%Y Cf. A085158, A283485.
%K nonn
%O 1,1
%A _Robert Price_, Jul 13 2017