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.

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

Original entry on oeis.org

51679, 202879, 4182239, 608601439, 2504895839, 81359229945439, 664565853945439, 262134882788466681439, 2103662445439858602854085842728187330559993439, 17994728558292550488813850298696914425610239993439
Offset: 1

Views

Author

Robert Price, Jul 12 2017

Keywords

Crossrefs

Cf. A261344.

Programs

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