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 A289519 #10 Aug 13 2023 13:31:14 %S A289519 131,149,173,359,3593,65963,151412753,184874815253, %T A289519 675141445011750931735785863483259503, %U A289519 13075173582607657311300240428800205506303238072109503,12956907789303111531153065870401861366351857094178052776930473828253 %N A289519 Primes of the form k!4+128, where k!4 is the quadruple factorial number (A007662). %H A289519 Robert Price, <a href="/A289519/b289519.txt">Table of n, a(n) for n = 1..12</a> %H A289519 Henri& Renaud Lifchitz, <a href="http://www.primenumbers.net/prptop/searchform.php?form=n4+128&action=Search">PRP Records.Search for n!4+128.</a> %H A289519 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 A289519 OpenPFGW Project, <a href="http://sourceforge.net/projects/openpfgw/">Primality Tester</a> %t A289519 MultiFactorial[n_, k_] := If[n<1, 1, n*MultiFactorial[n-k, k]]; %t A289519 Select[Table[MultiFactorial[i, 4] + 128, {i, 0, 100}], PrimeQ[#]&] %t A289519 Select[Table[Times@@Range[n,1,-4]+128,{n,200}],PrimeQ] (* _Harvey P. Dale_, Aug 13 2023 *) %Y A289519 Cf. A291348. %K A289519 nonn %O A289519 1,1 %A A289519 _Robert Price_, Sep 02 2017