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.

A262772 Numbers k such that k!! - 32 is prime.

Original entry on oeis.org

7, 45, 67, 145, 411, 825, 1021, 4039, 9069, 9789, 12463, 15137, 26313, 27499
Offset: 1

Views

Author

Robert Price, Sep 30 2015

Keywords

Comments

Corresponding primes are 73, 25373791335626257947657609343, ... .
a(15) > 50000.

Crossrefs

Programs

  • Magma
    DoubleFactorial:=func< n | &*[n..2 by -2] >; [ n: n in [7..450] | IsPrime(DoubleFactorial(n) -32) ]; // Vincenzo Librandi, Oct 01 2015
    
  • Mathematica
    Select[Range[0, 50000], If[#!! - 32 > 0, PrimeQ[#!! - 32]] &]
  • PARI
    for(n=1, 1e4, if (isprime(prod(k=0, (n-1)\2, n - 2*k ) - 32),print1(n", "))) \\ Altug Alkan, Oct 01 2015