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.

A288445 Numbers k such that k!6 + 18 is prime, where k!6 is the sextuple factorial number (A085158 ).

This page as a plain text file.
%I A288445 #4 Jun 09 2017 19:43:35
%S A288445 1,5,11,13,17,19,23,31,37,41,49,83,115,161,205,617,683,769,799,1117,
%T A288445 1151,1685,1697,1951,2173,3619,3647,6229,6463,6613,9827,12985,15721,
%U A288445 16933,22579,25181,38869,48755
%N A288445 Numbers k such that k!6 + 18 is prime, where k!6 is the sextuple factorial number (A085158 ).
%C A288445 Corresponding primes are: 19, 23, 73, 109, 953, 1747, 21523, 1339993, 49579093, 894930593, ...
%C A288445 a(39) > 50000.
%C A288445 Terms > 49 correspond to probable primes.
%H A288445 Henri & Renaud Lifchitz, <a href="http://www.primenumbers.net/prptop/searchform.php?form=n!6+18&amp;action=Search">PRP Records. Search for n!6+18.</a>
%H A288445 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 A288445 OpenPFGW Project, <a href="http://sourceforge.net/projects/openpfgw/">Primality Tester</a>
%e A288445 11!6 + 18 = 11*5 + 18 = 73 is prime, so 11 is in the sequence.
%t A288445 MultiFactorial[n_, k_] := If[n < 1, 1, n*MultiFactorial[n - k, k]];
%t A288445 Select[Range[0, 50000], PrimeQ[MultiFactorial[#, 6] + 18] &]
%Y A288445 Cf. A007661, A037082, A084438, A123910, A242994.
%K A288445 nonn,more
%O A288445 1,2
%A A288445 _Robert Price_, Jun 09 2017