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.

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

Original entry on oeis.org

5, 6, 8, 10, 68, 82, 92, 98, 118, 286, 796, 878, 1360, 1502, 1516, 1568, 1646, 3628, 3716, 4048, 7982, 12776, 18070, 20594, 29902, 39632, 52988, 53864, 55610, 67448, 85402, 89762
Offset: 1

Views

Author

Robert Price, Jul 07 2017

Keywords

Comments

Corresponding primes are: 2, 3, 13, 37, 73569236156415997, ...
a(33) > 10^5.
Terms > 10 correspond to probable primes.

Examples

			10!6 - 3 = 10*4 - 3 = 37 is prime, so 10 is in the sequence.
		

Crossrefs

Programs

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

Extensions

a(27)-a(32) from Robert Price, Aug 03 2018