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

A357934
Products of two distinct lesser twin primes A001359.
0
15, 33, 51, 55, 85, 87, 123, 145, 177, 187, 205, 213, 295, 303, 319, 321, 355, 411, 447, 451, 493, 505, 535, 537, 573, 591, 649, 681, 685, 697, 717, 745, 781, 807, 843, 895, 933, 955, 985, 1003, 1041, 1111, 1135, 1177, 1189, 1195, 1207, 1257, 1293, 1345, 1383, 1405, 1507, 1555, 1563
OFFSET
1,1
MATHEMATICA
d = {}; less = Select[Range[1607], PrimeQ[#] && PrimeQ[# + 2] &]; Do[Do[AppendTo[d, less[[m]] less[[n]]], {m, n + 1, Length[less]}], {n,
1, Length[less] - 1}]; Take[Sort[d], 55]
PROG
(PARI) list(lim)=my(v=List(), p=5); forprime(q=7, lim\3+2, if(q-p==2, my(r=3); forprime(s=5, min(lim\p+2, p), if(s-r==2, listput(v, p*r)); r=s)); p=q); Set(v) \\ Charles R Greathouse IV, Oct 21 2022
CROSSREFS
Cf. A001359.
Sequence in context: A351562 A316153 A190754 * A327900 A071965 A242677
KEYWORD
nonn
AUTHOR
Artur Jasinski, Oct 21 2022
STATUS
approved