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.

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

Original entry on oeis.org

271, 523, 1123, 24344563, 96342643, 608608243, 5577337931669504243, 52580450364682240243, 262134882788466688243, 13106744139423334400243, 694657439389436723200243, 7368624314106569113600243, 12931890526958090978845347074978621685760000243
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^5, {i, 0, 100}], PrimeQ[#]&]

Formula

a(n) = 243 + A007661(A247868(n)). - Elmo R. Oliveira, Apr 14 2025
Showing 1-1 of 1 results.