This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A233561 #15 Nov 02 2017 17:48:51 %S A233561 15,35,39,87,95,119,123,143,159,203,215,219,299,303,327,335,395,447, %T A233561 515,527,543,623,635,695,699,707,767,779,803,843,879,899,923,959,1007, %U A233561 1043,1047,1115,1139,1199,1203,1227,1263,1347,1355,1383,1403,1623,1643 %N A233561 Products p*q of distinct primes such that (p*q - 1)/2 is prime. %H A233561 Harvey P. Dale, <a href="/A233561/b233561.txt">Table of n, a(n) for n = 1..1000</a> %e A233561 15 = 3*5 is the least product of distinct primes p and q for which (p*q - 1)/2 is prime, so a(1) = 15. %t A233561 t = Select[Range[1, 7000, 2], Map[Last, FactorInteger[#]] == Table[1, {2}] &]; Take[(t - 1)/2, 120] (* A234093 *) %t A233561 v = Flatten[Position[PrimeQ[(t - 1)/2], True]] ; w = Table[t[[v[[n]]]], {n, 1, Length[v]}] (* A233561 *) %t A233561 (w - 1)/2 (* A234095 *) (* _Peter J. C. Moses_, Dec 23 2013 *) %t A233561 With[{upto=2000},Select[Times@@#&/@Select[Subsets[Prime[Range[ PrimePi[ upto/2]]],{2}],PrimeQ[(Times@@#-1)/2]&]//Union,#<=upto&]] (* _Harvey P. Dale_, Nov 02 2017 *) %Y A233561 Cf. A234093, A234095, A046388. %K A233561 nonn,easy %O A233561 1,1 %A A233561 _Clark Kimberling_, Dec 14 2013