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.

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

Original entry on oeis.org

59051, 59053, 59077, 59929, 608667049, 3091650738235049, 262134882788466747049, 17994728558292550488813850298696914425610240059049, 113024723205613715155108333435313153533542400059049
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^10, {i, 0, 100}], PrimeQ[#]&]
    Select[Table[Times@@Range[n,1,-3]+59049,{n,150}],PrimeQ] (* Harvey P. Dale, May 03 2020 *)

Formula

a(n) = 59049 + A007661(A261145(n)). - Elmo R. Oliveira, Apr 14 2025