OFFSET
1,1
COMMENTS
All numbers are even and divisible by 6.
EXAMPLE
n=1884 has the anti-divisors 8, 24, 1256 whose product is 241152 and the divisors 1, 2, 3, 4, 6, 12, 157, 314, 942, 1884, 628, 471 whose product is 44718310871557410816. Their ratio 44718310871557410816 / 241152 = 185436201530808 is integral so 1884 is a term of the sequence.
MAPLE
with(numtheory);
P:=proc(i)
local a, b, d, k, n;
for n from 3 by 1 to i do
a:=1;
for k from 2 to n-1 do if abs((n mod k)- k/2) < 1 then a:=a*k; fi; od;
d:=divisors(n); b:=1;
for k from 1 to nops(d) do b:=b*d[k]; od;
if trunc(b/a)=b/a then print(n); fi;
od;
end:
P(1000);
CROSSREFS
KEYWORD
nonn
AUTHOR
Paolo P. Lava, Jul 07 2011
STATUS
approved