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.

Showing 1-1 of 1 results.

A289702 Primes of the form k!4+1024, where k!4 is the quadruple factorial number (A007662).

Original entry on oeis.org

1069, 1609, 1515229, 40884559, 4996617649, 3496303289505049, 3080000333445961551649, 56064899053039198176082552869866162894943516649, 4767836158257635361854381088929485809336884933170042099072266649
Offset: 1

Views

Author

Robert Price, Sep 02 2017

Keywords

Crossrefs

Cf. A291351.

Programs

  • Mathematica
    MultiFactorial[n_, k_] := If[n<1, 1, n*MultiFactorial[n-k, k]];
    Select[Table[MultiFactorial[i, 4] + 1024, {i, 0, 100}], PrimeQ[#]&]
Showing 1-1 of 1 results.