login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A237039
Semiprimes of the form (2*p)^3 + 1, where p is prime.
6
65, 217, 10649, 195113, 1191017, 45882713, 55742969, 946966169, 2106997769, 2289529433, 2548895897, 10735357817, 26946035993, 54958685609, 77199941513, 131561576057, 132495001193, 440016501017, 456888832409, 623273556089, 848202406697, 966188398457
OFFSET
1,1
LINKS
Eric Weisstein's World of Mathematics, Semiprime.
Wikipedia, Semiprime.
FORMULA
a(n) = (2*A237038(n))^3 + 1.
EXAMPLE
(2*2)^3 + 1 = 65 = 5*13 is a semiprime, so a(1) = 2.
MATHEMATICA
L = Select[Range[5000], PrimeQ[#] && PrimeQ[(2 #)^2 - 2 # + 1] && PrimeQ[2 # + 1] &]; (2 L)^3 + 1
Select[Table[(2p)^3+1, {p, Prime[Range[1000]]}], PrimeOmega[#]==2&] (* Harvey P. Dale, Jul 21 2021 *)
KEYWORD
nonn
AUTHOR
Jonathan Sondow, Feb 02 2014
STATUS
approved