OFFSET
1,1
COMMENTS
Are there more terms?
No more terms < 10^6. - Joerg Arndt, Oct 01 2017
REFERENCES
See A025052.
EXAMPLE
11 is on the list because 11 = 1*2+1*3+2*3.
MATHEMATICA
oneSol={}; Do[lim=Ceiling[(n-2)/3]; cnt=0; Do[If[n>a*b && Mod[n-a*b, a+b]==0 && Quotient[n-a*b, a+b]>b, cnt++; If[cnt>1, Break[]]], {a, 1, lim-1}, {b, a+1, lim}]; If[cnt==1, AppendTo[oneSol, n]], {n, 10000}]; oneSol
PROG
(Python)
from collections import Counter
def aupto(N):
acount = Counter()
for i in range(1, N-1):
for j in range(i+1, N//i + 1):
p, s = i*j, i+j
for k in range(j+1, (N-p)//s + 1):
acount.update([p + s*k])
return sorted([k for k in acount if acount[k] == 1])
print(aupto(10**5)) # Michael S. Branicky, Nov 14 2021
CROSSREFS
KEYWORD
nonn,more
AUTHOR
T. D. Noe, Apr 08 2004
STATUS
approved