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 A288617 #9 Jan 20 2024 13:27:32 %S A288617 37,59,967,8537,623677,2229272062357,38661097149707, %T A288617 85869076433056713726000946907,9531467484069295223586105103157, %U A288617 79432354647061073112183103536868912864021331942535479440624079759179748913587442580929345703157 %N A288617 Primes of the form k!6+32, where k!6 is the sextuple factorial number (A085158). %H A288617 Robert Price, <a href="/A288617/b288617.txt">Table of n, a(n) for n = 1..13</a> %H A288617 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 A288617 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 A288617 OpenPFGW Project, <a href="http://sourceforge.net/projects/openpfgw/">Primality Tester</a> %t A288617 MultiFactorial[n_, k_] := If[n<1, 1, n*MultiFactorial[n-k, k]]; %t A288617 Select[Table[MultiFactorial[i, 6] + 32, {i, 0, 100}], PrimeQ[#]&] %Y A288617 Cf. A085158, A288448. %K A288617 nonn %O A288617 1,1 %A A288617 _Robert Price_, Jun 11 2017