Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.
%I #7 Aug 19 2022 12:38:49
%S 3,5,7,11,13,41,173,233,1877,293603,318482201,3047775608243,
%T 22045250515087152640289,1302844523174285888671877,
%U 930620100318118916029523201,4831436058626442432403564453127,2060356301148292483532951454058361,9936127455089061347552058319626135203
%N Primes of the form k!10+2, where k!10 is the decuple factorial number (A288327).
%H Robert Price, <a href="/A288370/b288370.txt">Table of n, a(n) for n = 1..29</a>
%H Henri& Renaud Lifchitz, <a href="http://www.primenumbers.net/prptop/searchform.php?form=n10+2&action=Search">PRP Records.Search for n!10+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, 10] + 2, {i, 0, 100}], PrimeQ[#]&]
%Y Cf. A204657, A288327.
%K nonn
%O 1,1
%A _Robert Price_, Jun 08 2017