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.

A291344 Numbers k such that k!4 + 2^4 is prime, where k!4 = k!!!! is the quadruple factorial number (A007662).

Original entry on oeis.org

0, 1, 3, 7, 9, 13, 19, 27, 35, 37, 65, 67, 75, 83, 89, 101, 111, 229, 363, 633, 1605, 1663, 1769, 1863, 1947, 2695, 3003, 5309, 7835, 9495, 9945, 11041, 18833, 21119, 21465, 21889, 24509, 26757, 27595, 33657, 54007, 67699, 87915
Offset: 1

Views

Author

Robert Price, Aug 22 2017

Keywords

Comments

Corresponding primes are: 17, 17, 19, 37, 61, 601, 65851, 40883551, ...
a(44) > 10^5.
Terms > 37 correspond to probable primes.

Examples

			13!4 + 2^4 = 13*9*5*1 + 16 = 601 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[0, 50000], PrimeQ[MultiFactorial[#, 4] + 2^4] &]

Extensions

a(41)-a(43) from Robert Price, Sep 25 2019