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

A242936
Numbers n such that n*prime(n) + (n+1)*(prime(n+1)) is semiprime.
1
2, 5, 9, 11, 13, 16, 17, 22, 23, 27, 28, 30, 31, 33, 37, 38, 41, 42, 44, 45, 47, 53, 56, 58, 61, 64, 65, 67, 68, 70, 73, 74, 75, 76, 80, 81, 84, 85, 88, 90, 92, 93, 96, 99, 102, 105, 106, 107, 108, 109, 110, 112, 114, 116, 117, 119, 122, 123, 124, 125, 126, 129
OFFSET
1,1
LINKS
EXAMPLE
a(2) = 5: 5*prime(5) + (5+1)*prime(5+1) = 133 = 7 * 19 which is semiprime.
a(3) = 9: 9*prime(9) + (9+1)*prime(9+1) = 497 = 7 * 71 which is semiprime.
MAPLE
with(numtheory): A242936:= proc() if bigomega(n*ithprime(n) + (n+1)*ithprime(n+1) = 2 then return (n) : fi; end: seq(A242936 (), n=1..500);
MATHEMATICA
c = 0; Do[If[PrimeOmega[n*Prime[n] + (n+1)*Prime[n+1]]==2, c++; Print[c, " ", n]], {n, 1, 35000}];
CROSSREFS
KEYWORD
nonn
AUTHOR
K. D. Bajpai, May 27 2014
STATUS
approved