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.

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

Original entry on oeis.org

5, 7, 13, 31, 83, 283, 883, 3643, 12323, 58243, 1106563, 4188803, 2504902403, 17041024003, 72642169603, 2324549427203, 126757680265216003, 38900816605808456499200003, 26070192823309041523916800003, 254451773522587035734629406212096000003
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, {i, 0, 100}], PrimeQ[#]&]
Showing 1-1 of 1 results.