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

A178662
Semiprimes of the form m*k such that (m-1)/(k+1) is also semiprime.
1
26, 38, 51, 62, 86, 111, 123, 134, 158, 183, 185, 206, 267, 278, 303, 305, 411, 446, 471, 511, 566, 591, 635, 687, 699, 734, 755, 785, 791, 803, 831, 878, 995, 998, 1047, 1055, 1119, 1145, 1199, 1214, 1238, 1241, 1286
OFFSET
1,1
LINKS
EXAMPLE
a(1)=26 because semiprime=26=13*2 and (13-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[1300], PrimeOmega[#] == 2&], spQ] (* Harvey P. Dale, Jul 27 2011 *)
CROSSREFS
Cf. A178564.
Sequence in context: A106551 A106553 A371696 * A039324 A043147 A043927
KEYWORD
nonn
AUTHOR
EXTENSIONS
More terms from R. J. Mathar, Jun 26 2010
STATUS
approved