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.

A289754 Primes of the form k!10 - 1, where k!10 is the decuple factorial number (A288327).

Original entry on oeis.org

2, 3, 5, 7, 23, 199, 239999, 7354367, 719999999, 2287853567, 50399999999, 43193222037503, 199094626418687, 17254743876205585224626400657407, 620448401733239439359999999999999999999999999999, 17999257015554062631539656405422901164857242675052543
Offset: 1

Views

Author

Robert Price, Jul 11 2017

Keywords

Crossrefs

Programs

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

Formula

a(n) = A288327(A204658(n)) - 1. - Elmo R. Oliveira, Apr 14 2025