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 A288447 #6 Aug 10 2021 13:21:26 %S A288447 2,4,8,10,14,20,22,26,32,40,110,116,142,148,200,370,854,1166,1594, %T A288447 2164,4424,5942,9086,13300,15224,20482,22940,27478,47486 %N A288447 Numbers k such that k!6 + 27 is prime, where k!6 is the sextuple factorial number (A085158 ). %C A288447 Corresponding primes are: 29, 31, 43, 67, 251, 4507, 14107, 116507, 3727387, 536166427, ... %C A288447 a(30) > 50000. %C A288447 Terms > 40 correspond to probable primes. %H A288447 Henri & Renaud Lifchitz, <a href="http://www.primenumbers.net/prptop/searchform.php?form=n!6+27&action=Search">PRP Records. Search for n!6+27.</a> %H A288447 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 A288447 OpenPFGW Project, <a href="http://sourceforge.net/projects/openpfgw/">Primality Tester</a> %e A288447 10!6 + 27 = 10*4 + 27 = 67 is prime, so 10 is in the sequence. %t A288447 MultiFactorial[n_, k_] := If[n < 1, 1, n*MultiFactorial[n - k, k]]; %t A288447 Select[Range[0, 50000], PrimeQ[MultiFactorial[#, 6] + 27] &] %t A288447 Select[Range[48000],PrimeQ[Times@@Range[#,1,-6]+27]&] (* _Harvey P. Dale_, Aug 10 2021 *) %Y A288447 Cf. A007661, A037082, A084438, A123910, A242994. %K A288447 nonn,more %O A288447 1,1 %A A288447 _Robert Price_, Jun 09 2017