OFFSET
1,1
COMMENTS
See A066272 for definition of anti-divisor.
LINKS
Chai Wah Wu, Table of n, a(n) for n = 1..586
Jon Perry, The Anti-Divisor
Jon Perry, The Anti-divisor [Cached copy]
Jon Perry, The Anti-divisor: Even More Anti-Divisors [Cached copy]
EXAMPLE
The anti-divisors of 89 = {2, 3, 59} sum to 64, a perfect cube, so 89 is in the sequence.
MATHEMATICA
AntiDivisors[n_] := Union[Drop[Drop[Divisors[2*n-1], 1], -1], Map[2*n/#&, Drop[Select[Divisors[2*n], OddQ], 1]], Drop[Drop[Divisors[2*n+1], 1], -1]]; Do[s = Plus @@ AntiDivisors[n]; If[IntegerQ[s^(1/3)], Print[n]], {n, 2, 10^5}]
PROG
(Python)
from sympy import integer_nthroot
from sympy.ntheory.factor_ import antidivisors
A109351_list = [n for n in range(2, 10**4) if integer_nthroot(sum(antidivisors(n)), 3)[1]] # Chai Wah Wu, Jun 13 2015
CROSSREFS
KEYWORD
nonn
AUTHOR
Ryan Propper, Aug 21 2005
STATUS
approved