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 A288618 #7 Jun 11 2017 20:57:14 %S A288618 37,41,43,127,971,43261,623681,1340011,5745471106411, %T A288618 46738795448742522161,4766501963120985802465188343530661, %U A288618 1074786248550703824689992004611909893100965328075457367488707779289800733267774881216607685661343511962890661 %N A288618 Primes of the form k!6+36, where k!6 is the sextuple factorial number (A085158). %H A288618 Robert Price, <a href="/A288618/b288618.txt">Table of n, a(n) for n = 1..13</a> %H A288618 Henri& Renaud Lifchitz, <a href="http://www.primenumbers.net/prptop/searchform.php?form=n6+36&action=Search">PRP Records.Search for n!6+36.</a> %H A288618 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 A288618 OpenPFGW Project, <a href="http://sourceforge.net/projects/openpfgw/">Primality Tester</a> %t A288618 MultiFactorial[n_, k_] := If[n<1, 1, n*MultiFactorial[n-k, k]]; %t A288618 Select[Table[MultiFactorial[i, 6] + 36, {i, 0, 100}], PrimeQ[#]&] %Y A288618 Cf. A288449. %K A288618 nonn %O A288618 1,1 %A A288618 _Robert Price_, Jun 11 2017