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.

A289821 Primes of the form k!3-729, where k!3 is the triple factorial number (A007661).

Original entry on oeis.org

151, 2504901671, 664565853951271, 3091650738175271, 26582634158079271, 126757680265215271, 142299187144047333874073599271, 546216992715109618958387336810111087297326406997164406744285183999999999271
Offset: 1

Views

Author

Robert Price, Jul 12 2017

Keywords

Crossrefs

Cf. A247466.

Programs

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