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.

A289860 Primes of the form k!4 - 2, where k!4 is the quadruple factorial number (A007662).

Original entry on oeis.org

2, 3, 19, 43, 229, 3463, 208843, 5221123, 151412623, 16713607661375623, 1027438963906784290227656915623, 7419136758370889359733910587728123, 64138437276116338514899657030909640623, 99213846986734491072350087622336908512964418837890623
Offset: 1

Views

Author

Robert Price, Jul 13 2017

Keywords

Crossrefs

Programs

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

Formula

a(n) = A007662(A283554(n)) - 2. - Elmo R. Oliveira, Feb 25 2025
Showing 1-1 of 1 results.