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.

A215780 Primes of the form 2*k!! - 1.

Original entry on oeis.org

3, 5, 29, 1889, 20789, 270269, 15811707161249, 443286190953399543749, 433724868863888852244234239999, 163685683629861106170483229851647999999, 10144121732653119949813597183199268946575359999999, 67476497990875549413061344119283906281177486718749
Offset: 1

Views

Author

Michel Lagneau, Aug 23 2012

Keywords

Comments

The corresponding k are in A215779.

Examples

			29 =  2*5!! - 1 = 2*15 - 1 is in the sequence.
		

Crossrefs

Programs

  • Mathematica
    a={}; Do[p= 2*n!! -1; If[PrimeQ[p], AppendTo[a, p]], {n, 0,800}]; Print[a];
    Select[2 Range[70]!!-1,PrimeQ] (* Harvey P. Dale, Dec 31 2020 *)

Extensions

Offset changed to 1 by Jinyuan Wang, May 15 2021