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”).

A158724
Numbers n such that prime(n)^2 + 1 is a semiprime.
0
2, 3, 5, 8, 10, 17, 18, 20, 22, 26, 32, 34, 42, 46, 58, 70, 75, 80, 87, 89, 98, 104, 105, 115, 116, 121, 131, 133, 142, 152, 158, 167, 173, 175, 177, 180, 182, 189, 190, 193, 194, 218, 228, 232, 237, 239, 242, 267, 271, 280, 282, 291, 296, 326, 333, 337, 339, 347
OFFSET
1,1
MATHEMATICA
lst={}; Do[If[Plus@@Last/@FactorInteger[Prime[n]^2+1]==2, AppendTo[lst, n]], {n, 0, 6!}]; lst
Select[Range[400], PrimeOmega[Prime[#]^2+1]==2&] (* Harvey P. Dale, Jun 14 2011 *)
PROG
(PARI) n=0; forprime(p=2, 1e4, n++; if(bigomega(p^2+1)==2, print1(n", "))) \\ Charles R Greathouse IV, Jun 14 2011
CROSSREFS
Sequence in context: A087279 A246346 A084907 * A289276 A181100 A036961
KEYWORD
nonn
AUTHOR
STATUS
approved