OFFSET
1,1
COMMENTS
No further terms with n*p*q <= A002110(18). - Robert Israel, Aug 07 2017
EXAMPLE
2 = 1 + 1 -> 2*1*1 = 2;
715 = 1 + 714 -> 715*714*1 = 510510 = 17*13*11*7*5*3*2;
1105 = 231 + 874 -> 1105*231*874 = 223092870 = 23*19*...*2;
496961 = 495726 + 1235 -> (17*23*31*41)*(2*3*7*11*29*37)*(5*13*19) = 41*37*...*2.
MAPLE
R:= 2:
for m from 1 to 13 do
P:= {seq(ithprime(i), i=1..m)}:
C:= combinat:-powerset(P) minus {{}, P};
for s3 in C do
z:= convert(s3, `*`);
C3:= P minus s3;
zp:= convert(C3, `*`);
if 4*zp > z^2 then next fi;
for s1 in combinat:-powerset(C3 minus {max(C3)}) do
x:= convert(s1, `*`);
y:= zp/x;
if x + y = z then
R:= R, z;
fi
od
od
od:
sort(convert({R}, list)); # Robert Israel, Aug 07 2017
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Naohiro Nomoto, Sep 10 2000
EXTENSIONS
5 more terms from Carlos Rivera, Nov 22 2000
STATUS
approved