This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A247464 #14 Feb 16 2025 08:33:23 %S A247464 10,13,14,17,20,26,29,31,32,50,59,77,82,104,164,185,217,263,293,361, %T A247464 437,442,545,547,599,608,623,739,782,1081,1120,1138,1429,2516,2518, %U A247464 4277,4529,5438,5596,11945,12716,13955,14540,31730,31769,42964,46396 %N A247464 Numbers n such that n!!! - 3^4 is prime. %C A247464 Large terms correspond to probable primes. %C A247464 a(48) > 50000. %H A247464 Henri & Renaud Lifchitz, <a href="http://www.primenumbers.net/prptop/searchform.php?form=n!3-81&action=Search">PRP Records. Search for n!3-81</a> %H A247464 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 A247464 OpenPFGW Project, <a href="http://sourceforge.net/projects/openpfgw/">Primality Tester</a> %H A247464 Eric Weisstein's World of Mathematics, <a href="https://mathworld.wolfram.com/Multifactorial.html">Multifactorial</a> %e A247464 10!3-81 = 10*7*4*1-81 = 199 is prime, so 10 is in the sequence. %t A247464 MultiFactorial[n_, k_] := If[n < 1, 1, If[n < k + 1, n, n*MultiFactorial[n - k, k]]]; %t A247464 lst={};Do[If[PrimeQ[MultiFactorial[n, 3] - 81], AppendTo[lst, n]], {n, 100}];lst %Y A247464 Cf. A007661, A037082, A084438, A243078. %K A247464 nonn,more %O A247464 1,1 %A A247464 _Robert Price_, Sep 17 2014