OFFSET
1,1
COMMENTS
A025058 without duplicates.
Non-Idoneal Numbers. [Artur Jasinski, Oct 27 2008]
Conjecture: If i, j and k are allowed to be negative, but not zero, and are still distinct, then the sequence is all the integers. - Jon Perry, Apr 21 2013
LINKS
Bo Gyu Jeong, Table of n, a(n) for n = 1..2000
MAPLE
N:= 200: # to get all terms <= N
sort(convert({seq(seq(seq(i*j + j*k + i*k, i=1..min(j-1, (N-j*k)/(j+k))), j=2..min(k-1, (N-k)/(1+k))), k=3..(N-2)/3)}, list)); # Robert Israel, Sep 06 2016
MATHEMATICA
aa = {}; Do[Do[Do[k = a b + b c + c a; AppendTo[aa, a b + b c + c a], {a, 1, b - 1}], {b, 2, c - 1}], {c, 3, 10}]; Union[aa] (* Artur Jasinski, Oct 27 2008 *)
PROG
(Python)
def aupto(N):
aset = set()
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):
aset.add(p + s*k)
return sorted(aset)
print(aupto(109)) # Michael S. Branicky, Nov 14 2021
CROSSREFS
KEYWORD
nonn
AUTHOR
STATUS
approved