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.

A289825 Primes of the form k!3 - 59049, where k!3 is the triple factorial number (A007661).

Original entry on oeis.org

1047511, 4129751, 24285271, 2504843351, 126757680265156951, 7368624314106569113540951, 38900816605808456499140951, 663800167477016615356604425212847831700575205814331164458540403251687739883519999999940951
Offset: 1

Views

Author

Robert Price, Jul 12 2017

Keywords

Crossrefs

Programs

  • Mathematica
    MultiFactorial[n_, k_] := If[n<1, 1, n*MultiFactorial[n-k, k]];
    Select[Table[MultiFactorial[i, 3] - 59049, {i, 17, 100}], PrimeQ[#]&]

Formula

a(n) = A007661(A265201(n)) - 59049. - Elmo R. Oliveira, Feb 25 2025