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-2 of 2 results.

A259045 Numbers n such that n!! - 2^6 is prime.

Original entry on oeis.org

7, 9, 11, 17, 21, 27, 29, 39, 43, 45, 67, 145, 173, 613, 833, 1449, 1703, 1719, 2673, 19661, 36095, 37837, 37845
Offset: 1

Views

Author

Robert Price, Jun 17 2015

Keywords

Comments

a(24) > 50000.

Crossrefs

Cf. A007749, A094144, A123910, A257864 (other forms of n!!-2^k)

Programs

  • Mathematica
    Select[Range[0, 50000], #!! - 64 > 0 && PrimeQ[#!! - 64] &]
    Select[Range[4, 6000], PrimeQ[#!! - 64] &] (* Vincenzo Librandi, Jun 18 2015 *)

A289855 Primes of the form k!2 - 128, where k!2 is the double factorial number (A006882).

Original entry on oeis.org

10267, 135007, 13749310447, 1192568192774434123539907640497, 29215606371473169285018060091249259296747, 1009847364737869270905302433221592504062302663202724609247, 34720596058582394465875230149026168047833371128291024141249287753332469144201839599609247
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, 2] - 128, {i, 8, 100}], PrimeQ[#]&]
    Select[Range[8,120]!!-128,PrimeQ] (* Harvey P. Dale, Dec 01 2018 *)

Formula

a(n) = A006882(A257864(n)) - 128. - Elmo R. Oliveira, Apr 14 2025
Showing 1-2 of 2 results.