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.

Previous Showing 11-12 of 12 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 *)

A288405 Primes of the form k!2+4, where k!2 is the double factorial number (A006852).

Original entry on oeis.org

5, 7, 19, 109, 10399, 34459429, 6190283353629379, 319830986772877770815629, 563862029680583509947946879, 174865344543353986303948473285124243127671456831640629, 2987435000850314871976096554696085799164511452611632783323554397412109379
Offset: 1

Views

Author

Robert Price, Jun 08 2017

Keywords

Crossrefs

Cf. A076186.

Programs

  • Mathematica
    MultiFactorial[n_, k_] := If[n<1, 1, n*MultiFactorial[n-k, k]];
    Select[Table[MultiFactorial[i, 2] + 4, {i, 0, 100}], PrimeQ[#]&]
Previous Showing 11-12 of 12 results.