OFFSET
1,1
COMMENTS
Note that for a semiprime p*q, the expression (p+1)*(q+1) is the sum of the divisors (A000203) of p*q. - Michel Marcus, Jan 29 2015
Subsequence of A162283. - Gionata Neri, Nov 20 2015
LINKS
T. D. Noe, Table of n, a(n) for n=1..1000
EXAMPLE
For pq = 14 = 2*7, the corresponding rs is 15 because (2+1)(7+1) = 24 = (3+1)(5+1).
MATHEMATICA
nn=1000; sp=Select[Range[2, 3*nn/2], Last/@FactorInteger[ # ]=={1, 1}&]; prods=Table[Times@@(1+First/@FactorInteger[n]), {n, sp}]; dups=Select[Tally[prods], #[[2]]>1&]; goodProds=Sort[Transpose[dups][[1]]]; pos=Select[Range[Length[sp]], sp[[ # ]]<=nn && MemberQ[goodProds, prods[[ # ]]]&]; sp[[pos]]
CROSSREFS
KEYWORD
nonn
AUTHOR
T. D. Noe, Sep 07 2010
STATUS
approved