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 A289735 #5 Jul 11 2017 07:41:24 %S A289735 23,59,373,1697,7577923,21827543,295540213,131527051677143, %T A289735 2435649120429493,12604484198222791843,85869076433056713726000946843, %U A289735 1529106341836865438018563891724026267890593,20902899038646966778921470349830080361289716808681312890593 %N A289735 Primes of the form k!6-32, where k!6 is the sextuple factorial number (A085158). %H A289735 Robert Price, <a href="/A289735/b289735.txt">Table of n, a(n) for n = 1..17</a> %H A289735 Henri & Renaud Lifchitz, <a href="http://www.primenumbers.net/prptop/searchform.php?form=n6-32&action=Search">PRP Records.Search for n!6-32.</a> %H A289735 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 A289735 OpenPFGW Project, <a href="http://sourceforge.net/projects/openpfgw/">Primality Tester</a> %t A289735 MultiFactorial[n_, k_] := If[n<1, 1, n*MultiFactorial[n-k, k]]; %t A289735 Select[Table[MultiFactorial[i, 6] - 32, {i, 10, 100}], PrimeQ[#]&] %Y A289735 Cf. A289699. %K A289735 nonn %O A289735 1,1 %A A289735 _Robert Price_, Jul 10 2017