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.

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

Original entry on oeis.org

2, 4, 14, 28, 34, 46, 50, 52, 86, 100, 106, 140, 166, 170, 208, 242, 338, 344, 412, 1360, 2024, 2948, 3650, 5608, 5744, 7618, 8410, 8834, 11872, 12514, 13636, 18742, 20846, 29750, 31312
Offset: 1

Views

Author

Robert Price, Jun 05 2017

Keywords

Comments

Corresponding primes are: 11, 13, 233, 394249, 13404169, 24663654409, 311607296009, ...
a(36) > 50000.
Terms > 50 correspond to probable primes.

Examples

			14!6 + 9 = 14*8*2 + 9 = 233 is prime, so 14 is in the sequence.
		

Crossrefs

Programs

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