OFFSET
1,2
EXAMPLE
1 is a term because 1/1 = (1*2*3)/(1+2+3) = 1.
3080 is a term because (1*2*3*5*6*7*10*11)/(1+2+3+5+6+7+10+11) = 138600/45 = 3080.
MAPLE
with(numtheory): P:=proc(q) local a, b, c, n; a:=1; b:=0; c:=[];
for n from 1 to q do if issqrfree(n) then a:=a*n; b:=b+n;
if frac(a/b)=0 then if n>1 then c:=[op(c), a/b];
fi; fi; fi; od; op(c); end: P(60);
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Paolo P. Lava, Dec 20 2018
STATUS
approved