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.

A289818 Primes of the form k!3-27, where k!3 is the triple factorial number (A007661).

This page as a plain text file.
%I A289818 #9 Mar 08 2020 19:23:14
%S A289818 53,853,3613,24344293,72642169573,2576442067869429759973,
%T A289818 38900816605808456499199973,26070192823309041523916799973,
%U A289818 17978533302590087193373917833428087202627190783999999973
%N A289818 Primes of the form k!3-27, where k!3 is the triple factorial number (A007661).
%H A289818 Harvey P. Dale, <a href="/A289818/b289818.txt">Table of n, a(n) for n = 1..21</a>
%H A289818 Henri & Renaud Lifchitz, <a href="http://www.primenumbers.net/prptop/searchform.php?form=n3-27&amp;action=Search">PRP Records.Search for n!3-27.</a>
%H A289818 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 A289818 OpenPFGW Project, <a href="http://sourceforge.net/projects/openpfgw/">Primality Tester</a>
%t A289818 MultiFactorial[n_, k_] := If[n<1, 1, n*MultiFactorial[n-k, k]];
%t A289818 Select[Table[MultiFactorial[i, 3] - 27, {i, 7, 100}], PrimeQ[#]&]
%t A289818 Select[Table[Times@@Range[n,1,-3]-27,{n,7,150}],PrimeQ] (* _Harvey P. Dale_, Mar 08 2020 *)
%Y A289818 Cf. A247463.
%K A289818 nonn
%O A289818 1,1
%A A289818 _Robert Price_, Jul 12 2017