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.

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

Original entry on oeis.org

11, 13, 23, 29, 35, 37, 49, 95, 97, 101, 113, 133, 137, 361, 401, 701, 1027, 1331, 2087, 2743, 7781, 9391, 12787, 12797, 16123, 17317, 21701, 49657, 64661, 72149, 86413
Offset: 1

Views

Author

Robert Price, Jul 09 2017

Keywords

Comments

Corresponding primes are: 43, 79, 21493, 623633, 21827563, 49579063, 104463111013, ...
a(32) > 10^5.
Terms > 49 correspond to probable primes.

Examples

			13!6 - 12 = 13*7*1 - 12 = 79 is prime, so 13 is in the sequence.
		

Crossrefs

Programs

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

Extensions

a(29)-a(31) from Robert Price, Aug 03 2018