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.

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

This page as a plain text file.
%I A289736 #5 Jul 11 2017 07:41:32
%S A289736 19,1693,43189,5745471106339,350473737488839,
%T A289736 40054638345554502541724271794339,
%U A289736 78051469646106142515367459125313984339,268110968591974440568718596462044971839
%N A289736 Primes of the form k!6-36, where k!6 is the sextuple factorial number (A085158).
%H A289736 Robert Price, <a href="/A289736/b289736.txt">Table of n, a(n) for n = 1..9</a>
%H A289736 Henri & Renaud Lifchitz, <a href="http://www.primenumbers.net/prptop/searchform.php?form=n6-36&amp;action=Search">PRP Records.Search for n!6-36.</a>
%H A289736 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 A289736 OpenPFGW Project, <a href="http://sourceforge.net/projects/openpfgw/">Primality Tester</a>
%t A289736 MultiFactorial[n_, k_] := If[n<1, 1, n*MultiFactorial[n-k, k]];
%t A289736 Select[Table[MultiFactorial[i, 6] - 36, {i, 10, 100}], PrimeQ[#]&]
%Y A289736 Cf. A289700.
%K A289736 nonn
%O A289736 1,1
%A A289736 _Robert Price_, Jul 10 2017