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 A289733 #8 Jul 11 2017 07:41:10 %S A289733 3,31,67,911,21481,43201,623621,1339951,49579051,2131900201, %T A289733 2229272062301,8549258359016351,606997343490162601, %U A289733 46738795448742522101,135419196954588922351,131181879631714694053764558690601,4766501963120985802465188343530601 %N A289733 Primes of the form k!6-24, where k!6 is the sextuple factorial number (A085158). %H A289733 Robert Price, <a href="/A289733/b289733.txt">Table of n, a(n) for n = 1..19</a> %H A289733 Henri & Renaud Lifchitz, <a href="http://www.primenumbers.net/prptop/searchform.php?form=n6-24&action=Search">PRP Records.Search for n!6-24.</a> %H A289733 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 A289733 OpenPFGW Project, <a href="http://sourceforge.net/projects/openpfgw/">Primality Tester</a> %t A289733 MultiFactorial[n_, k_] := If[n<1, 1, n*MultiFactorial[n-k, k]]; %t A289733 Select[Table[MultiFactorial[i, 6] - 24, {i, 9, 100}], PrimeQ[#]&] %Y A289733 Cf. A289697. %K A289733 nonn %O A289733 1,1 %A A289733 _Robert Price_, Jul 10 2017