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 A289510 #8 Sep 02 2017 19:28:14 %S A289510 37,53,263,617,65867,208877,5221157,40883567,44358635507,184874815157, %T A289510 178311467764705307,9807130727058790157,200200021673987500790657, %U A289510 173407420068655576409731157,4551830726072842264843919206776501006328157 %N A289510 Primes of the form k!4+32, where k!4 is the quadruple factorial number (A007662). %H A289510 Robert Price, <a href="/A289510/b289510.txt">Table of n, a(n) for n = 1..23</a> %H A289510 Henri& Renaud Lifchitz, <a href="http://www.primenumbers.net/prptop/searchform.php?form=n4+32&action=Search">PRP Records.Search for n!4+32.</a> %H A289510 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 A289510 OpenPFGW Project, <a href="http://sourceforge.net/projects/openpfgw/">Primality Tester</a> %t A289510 MultiFactorial[n_, k_] := If[n<1, 1, n*MultiFactorial[n-k, k]]; %t A289510 Select[Table[MultiFactorial[i, 4] + 32, {i, 0, 100}], PrimeQ[#]&] %Y A289510 Cf. A291345. %K A289510 nonn %O A289510 1,1 %A A289510 _Robert Price_, Sep 02 2017