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

A178661
Semiprimes of the form m*k such that (m+1)/(k-1) is also semiprime.
1
6, 10, 21, 26, 33, 51, 57, 74, 87, 115, 122, 123, 129, 146, 161, 201, 291, 295, 303, 314, 327, 339, 371, 386, 411, 413, 415, 489, 515, 519, 543, 554, 581, 611, 623, 626, 633, 649, 655, 687, 695, 723, 755, 771, 794, 842, 843, 849, 914, 917, 923, 951, 979, 993
OFFSET
1,1
LINKS
EXAMPLE
a(1)=6 because semiprime=6=3*2 and (3+1)/(2-1)=4=semiprime.
MATHEMATICA
spQ[n_]:=Module[{fs=Transpose[FactorInteger[n]][[1]]}, PrimeOmega[(Last[fs] + 1)/(First[fs] - 1)] == 2]; Select[Select[Range[1000], PrimeOmega[#] == 2&], spQ] (* Vincenzo Librandi, Sep 22 2012 *)
CROSSREFS
Cf. A178379.
Sequence in context: A254028 A085274 A175648 * A190273 A030007 A323729
KEYWORD
nonn
AUTHOR
EXTENSIONS
Corrected (339, 515, 755 inserted) by R. J. Mathar, Jun 04 2010
STATUS
approved