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.

A237038 Primes p such that (2*p)^3 + 1 is a semiprime.

Original entry on oeis.org

2, 3, 11, 29, 53, 179, 191, 491, 641, 659, 683, 1103, 1499, 1901, 2129, 2543, 2549, 3803, 3851, 4271, 4733, 4943, 5303, 5441, 6101, 6329, 6449, 7193, 7211, 8093, 8513, 9059, 9419, 10091, 10271, 10733, 10781, 11321, 12203, 12821, 13451, 14561, 15233, 15803, 17159, 17333, 18131, 19373, 19919
Offset: 1

Views

Author

Jonathan Sondow, Feb 02 2014

Keywords

Comments

Same as Sophie Germain primes p such that 4*p^2 - 2*p + 1 is also prime (because (2*p)^3 + 1 = (2*p + 1)(4*p^2 - 2*p + 1)).
Primes in A237037.
For n>1, 8*a(n)^3 is a solution for the equation phi(x+1) - phi(x) = x/2. - Farideh Firoozbakht, Dec 17 2014

Examples

			11 is prime and (2*11)^3 + 1 = 10649 = 23*463 is a semiprime, so 11 is a member.
		

Crossrefs

Programs

  • Mathematica
    Select[Range[20000], PrimeQ[#] && PrimeQ[(2 #)^2 - 2 # + 1] && PrimeQ[2 # + 1] &]
    Select[Prime[Range[2500]],PrimeOmega[(2#)^3+1]==2&] (* Harvey P. Dale, Jun 28 2021 *)

Formula

a(n) = (1/2)*(A237039(n)-1)^(1/3).