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.

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

Original entry on oeis.org

19687, 19763, 19963, 20563, 32003, 229123, 4208483, 24364003, 72642189283, 2324549446883, 5577337931669523683, 38900816605808456499219683, 26070192823309041523916819683
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^9, {i, 0, 100}], PrimeQ[#]&]
    Select[Table[Times@@Range[n,1,-3]+19683,{n,100}],PrimeQ] (* Harvey P. Dale, Sep 18 2023 *)

Formula

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