Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).
%I #7 Apr 13 2022 19:46:58
%S 733,739,757,809,1009,1609,13049,210169,81359229952729,
%T 126757680265216729,13106744139423334400729,
%U 2295148179742698933452800729,12931890526958090978845347074978621685760000729
%N Primes of the form k!3 + 3^6, where k!3 is the triple factorial number (A007661).
%H Robert Price, <a href="/A288882/b288882.txt">Table of n, a(n) for n = 1..18</a>
%H Henri& Renaud Lifchitz, <a href="http://www.primenumbers.net/prptop/searchform.php?form=n3+3^6&action=Search">PRP Records.Search for n!3+3^6.</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, 3] + 3^6, {i, 0, 100}], PrimeQ[#]&]
%Y Cf. A007661, A247867.
%K nonn
%O 1,1
%A _Robert Price_, Jun 18 2017