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.

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

Original entry on oeis.org

29, 31, 37, 107, 307, 907, 12347, 4188827, 96342427, 2324549427227, 17961239296027, 52580450364682240027, 262134882788466688027, 142299187144047333874073600027, 1414585397090614713326770033423904956109645017737276725445918510284800000000027
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^3, {i, 0, 100}], PrimeQ[#]&]

Formula

a(n) = 27 + A007661(A247886(n)). - Elmo R. Oliveira, Apr 13 2025
Showing 1-1 of 1 results.