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.

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

Original entry on oeis.org

83, 109, 12401, 58321, 24344401, 96342481, 2504902481, 26582634158080081, 1143053268797440081, 262134882788466688081, 427380210218181008588800081, 142299187144047333874073600081, 7825229077844441903818866688000081
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^4, {i, 0, 100}], PrimeQ[#]&]
    Select[Table[Times@@Range[n,1,-3]+81,{n,100}],PrimeQ] (* Harvey P. Dale, Aug 13 2021 *)

Formula

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