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.

A289700 Numbers k such that k!6 - 36 is prime, where k!6 is the sextuple factorial number (A085158).

Original entry on oeis.org

11, 19, 25, 55, 61, 113, 131, 133, 439, 529, 1079, 1621, 2609, 2825, 3997, 4235, 5081, 7319, 8365, 9023, 10273, 18095, 18199, 22625, 24535, 27229, 28883, 99877
Offset: 1

Views

Author

Robert Price, Jul 09 2017

Keywords

Comments

Corresponding primes are: 19, 1693, 43189, 5745471106339, 350473737488839, ...
a(29) > 10^5.
Terms > 25 correspond to probable primes.

Examples

			19!6 - 36 = 19*13*7*1 - 36 = 1693 is prime, so 19 is in the sequence.
		

Crossrefs

Programs

  • Mathematica
    MultiFactorial[n_, k_] := If[n < 1, 1, n*MultiFactorial[n - k, k]];
    Select[Range[10, 50000], PrimeQ[MultiFactorial[#, 6] - 36] &]

Extensions

a(28) from Robert Price, Nov 28 2018