cp's OEIS Frontend

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.

A288716 Primes of the form k!8+2, where k!8 is the octuple factorial number (A114800).

This page as a plain text file.
%I A288716 #5 Jun 13 2017 23:02:11
%S A288716 3,5,7,11,67,107,1367,2417,16931,126227,592517,65909027,3493178327,
%T A288716 7547514977,14454403427,385235284982627,2667042724170827,
%U A288716 98523573068265783062627,121598818552526868243555286516922298627484453127
%N A288716 Primes of the form k!8+2, where k!8 is the octuple factorial number (A114800).
%H A288716 Robert Price, <a href="/A288716/b288716.txt">Table of n, a(n) for n = 1..25</a>
%H A288716 Henri& Renaud Lifchitz, <a href="http://www.primenumbers.net/prptop/searchform.php?form=n8+2&amp;action=Search">PRP Records.Search for n!8+2.</a>
%H A288716 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 A288716 OpenPFGW Project, <a href="http://sourceforge.net/projects/openpfgw/">Primality Tester</a>
%t A288716 MultiFactorial[n_, k_] := If[n<1, 1, n*MultiFactorial[n-k, k]];
%t A288716 Select[Table[MultiFactorial[i, 8] + 2, {i, 0, 100}], PrimeQ[#]&]
%Y A288716 Cf. A204663.
%K A288716 nonn
%O A288716 1,1
%A A288716 _Robert Price_, Jun 13 2017