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.

A329176 Numbers k such that k![4] - 128 is prime, where k![4] = A007662(k) = quadruple factorial.

This page as a plain text file.
%I A329176 #14 Apr 03 2023 10:36:13
%S A329176 11,13,17,19,25,27,29,41,47,61,75,113,181,251,287,339,521,533,573,687,
%T A329176 739,1015,1243,1811,2073,2851,2939,3421,4055,4211,4477,5219,6151,8851,
%U A329176 9251,14219,17123,21703,24313,25053,28811,33065,49305,50775,52693,69805,82077,87771
%N A329176 Numbers k such that k![4] - 128 is prime, where k![4] = A007662(k) = quadruple factorial.
%C A329176 a(49) > 10^5.
%C A329176 The first 5 primes associated with this sequence are: 103, 457, 9817, 65707, 5220997.
%H A329176 C. K. Caldwell, The Prime Glossary, <a href="https://t5k.org/glossary/page.php/MultifactorialPrime.html">multifactorial prime</a>
%H A329176 C. Caldwell and H. Dubner (Eds): <a href="https://t5k.org/lists/top_ten/">The top ten prime numbers: from the unpublished collections of R. Ondrejka</a> (May 2001), Table 21 F, p. 75.
%H A329176 Ken Davis, <a href="http://mfprimes.free-dc.org">Status of Search for Multifactorial Primes</a>.
%H A329176 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>
%t A329176 MultiFactorial[n_, k_] := If[n < 1, 1, n*MultiFactorial[n - k, k]];
%t A329176 Select[Range[1000], (x = MultiFactorial[#, 4] - 128; x > 0 && PrimeQ[x]) &]
%t A329176 Select[Range[10,90000],PrimeQ[Times@@Range[#,1,-4]-128]&] (* _Harvey P. Dale_, May 13 2022 *)
%Y A329176 Cf. A007662, A283553.
%K A329176 nonn
%O A329176 1,1
%A A329176 _Robert Price_, Nov 07 2019