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.

A289727 Primes of the form k!6-6, where k!6 is the sextuple factorial number (A085158).

Original entry on oeis.org

929, 1723, 21499, 1339969, 49579069, 42061737019, 8549258359016369, 815970262367657972299041020065569977629234369, 128107331191722301650949440150294486487789796869, 320745817436192067170665942374782284454205305520925161570651550901795210373583984369
Offset: 1

Views

Author

Robert Price, Jul 10 2017

Keywords

Crossrefs

Cf. A289685.

Programs

  • Mathematica
    MultiFactorial[n_, k_] := If[n<1, 1, n*MultiFactorial[n-k, k]];
    Select[Table[MultiFactorial[i, 6] - 6, {i, 6, 100}], PrimeQ[#]&]
Showing 1-1 of 1 results.