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

A103767
Numbers n such that prime(n)*prime(n+1)*prime(n+2) - 1 is semiprime.
1
6, 10, 29, 42, 44, 55, 57, 102, 104, 111, 120, 136, 174, 184, 257, 269, 308, 325, 327, 401, 426, 504, 514, 565, 571, 594, 595, 652, 717, 755, 864, 882, 901, 907, 985, 1014, 1074, 1134, 1141, 1156, 1198, 1301, 1327, 1346, 1362, 1654, 1670, 1674, 1778, 1897
OFFSET
1,1
LINKS
EXAMPLE
prime(10)*prime(11)*prime(12) - 1 = 29*31*37 - 1 = 33262= 2*16631, hence 10 is
a term.
MATHEMATICA
PrimePi/@Transpose[Select[Partition[Prime[Range[2000]], 3, 1], PrimeOmega[ Times@@#-1]==2&]][[1]] (* Harvey P. Dale, Mar 15 2015 *)
PROG
(PARI) for(n=1, 1900, if(bigomega(prime(n)*prime(n+1)*prime(n+2)-1)==2, print1(n, ", ")))
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Klaus Brockhaus, Mar 29 2005
STATUS
approved