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

A134622
Products pq ("semiprimes") of two primes p and q >= p such that q+2 is a prime.
0
6, 9, 10, 15, 22, 25, 33, 34, 51, 55, 58, 77, 82, 85, 87, 118, 119, 121, 123, 142, 145, 177, 187, 202, 203, 205, 213, 214, 221, 274, 287, 289, 295, 298, 303, 319, 321, 355, 358, 377, 382, 394, 411, 413, 447, 451, 454, 478, 493, 497, 505, 533, 535, 537, 538, 551, 562, 573
OFFSET
1,1
MAPLE
p:=ithprime;
t1:=[];
for i from 1 to 100 do
p1:=p(i);
for j from i to 100 do
p2:=p(j);
if isprime(p2+2) then t1:=[op(t1), p1*p2]; fi;
od: od:
t2:=sort(t1);
CROSSREFS
Cf. A108605.
Sequence in context: A153519 A020219 A175634 * A130593 A328234 A051221
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Oct 17 2009
STATUS
approved

  NODES
orte 1
see 1
Story 1