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.

A288878 Primes of the form k!3 + 3^2, where k!3 is the triple factorial number (A007661).

Original entry on oeis.org

11, 13, 19, 37, 89, 12329, 209449, 1106569, 24344329, 96342409, 2504902409, 17961239296009, 52580450364682240009, 2295148179742698933452800009, 7825229077844441903818866688000009, 145302140752338100885902776123355299840000009
Offset: 1

Views

Author

Robert Price, Jun 18 2017

Keywords

Crossrefs

Programs

  • Mathematica
    MultiFactorial[n_, k_] := If[n<1, 1, n*MultiFactorial[n-k, k]];
    Select[Table[MultiFactorial[i, 3] + 3^2, {i, 0, 100}], PrimeQ[#]&]

Formula

a(n) = 9 + A007661(A247865(n)). - Elmo R. Oliveira, Apr 13 2025