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 A289817 #4 Jul 13 2017 21:26:45 %S A289817 19,71,271,3631,58231,209431,4188791,96342391,17041023991,72642169591, %T A289817 2324549427191,1143053268797439991,52580450364682239991, %U A289817 262134882788466687991,694657439389436723199991,38900816605808456499199991,2295148179742698933452799991 %N A289817 Primes of the form k!3-9, where k!3 is the triple factorial number (A007661). %H A289817 Robert Price, <a href="/A289817/b289817.txt">Table of n, a(n) for n = 1..24</a> %H A289817 Henri & Renaud Lifchitz, <a href="http://www.primenumbers.net/prptop/searchform.php?form=n3-9&action=Search">PRP Records.Search for n!3-9.</a> %H A289817 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 A289817 OpenPFGW Project, <a href="http://sourceforge.net/projects/openpfgw/">Primality Tester</a> %t A289817 MultiFactorial[n_, k_] := If[n<1, 1, n*MultiFactorial[n-k, k]]; %t A289817 Select[Table[MultiFactorial[i, 3] - 9, {i, 5, 100}], PrimeQ[#]&] %Y A289817 Cf. A243078. %K A289817 nonn %O A289817 1,1 %A A289817 _Robert Price_, Jul 12 2017