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.

A289737 Primes of the form k!6-48, where k!6 is the sextuple factorial number (A085158).

This page as a plain text file.
%I A289737 #7 Jul 11 2017 07:41:41
%S A289737 7,43,887,43177,21827527,894930527,1714167050058087577,
%T A289737 46738795448742522077,345259481979861010937327,
%U A289737 40054638345554502541724271794327,131181879631714694053764558690577,15873007435437477980505511601565577,595812745390123225308148542941328077
%N A289737 Primes of the form k!6-48, where k!6 is the sextuple factorial number (A085158).
%H A289737 Robert Price, <a href="/A289737/b289737.txt">Table of n, a(n) for n = 1..18</a>
%H A289737 Henri & Renaud Lifchitz, <a href="http://www.primenumbers.net/prptop/searchform.php?form=n6-48&amp;action=Search">PRP Records.Search for n!6-48.</a>
%H A289737 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 A289737 OpenPFGW Project, <a href="http://sourceforge.net/projects/openpfgw/">Primality Tester</a>
%t A289737 MultiFactorial[n_, k_] := If[n<1, 1, n*MultiFactorial[n-k, k]];
%t A289737 Select[Table[MultiFactorial[i, 6] - 48, {i, 11, 100}], PrimeQ[#]&]
%Y A289737 Cf. A289701.
%K A289737 nonn
%O A289737 1,1
%A A289737 _Robert Price_, Jul 10 2017