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 A288411 #9 Mar 09 2018 17:21:35 %S A288411 257,271,1201,10651,135391,316234143481, %T A288411 49988475139107080748861383849035044804037186461213252284425520655249250725695020643146597883951938106998443603515881 %N A288411 Primes of the form k!2+256, where k!2 is the double factorial number (A006852). %C A288411 The next term has 174 digits. - _Harvey P. Dale_, Mar 09 2018 %H A288411 Robert Price, <a href="/A288411/b288411.txt">Table of n, a(n) for n = 1..8</a> %H A288411 Henri& Renaud Lifchitz, <a href="http://www.primenumbers.net/prptop/searchform.php?form=n2+256&action=Search">PRP Records.Search for n!2+256.</a> %H A288411 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 A288411 OpenPFGW Project, <a href="http://sourceforge.net/projects/openpfgw/">Primality Tester</a> %t A288411 MultiFactorial[n_, k_] := If[n<1, 1, n*MultiFactorial[n-k, k]]; %t A288411 Select[Table[MultiFactorial[i, 2] + 256, {i, 0, 100}], PrimeQ[#]&] %t A288411 Select[Range[200]!!+256,PrimeQ] (* _Harvey P. Dale_, Mar 09 2018 *) %Y A288411 Cf. A076195. %K A288411 nonn %O A288411 1,1 %A A288411 _Robert Price_, Jun 08 2017