OFFSET
1,1
COMMENTS
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..1000
EXAMPLE
4900 is a term since the sum of its aliquot coreful divisors, {70, 140, 350, 490, 700, 980, 2450}, is 5180 > 4900, and no subset of these divisors sums to 4900.
MATHEMATICA
corDiv[n_] := Module[{rad = Times @@ FactorInteger [n][[;; , 1]]}, rad * Divisors[n/rad]]; corWeirdQ[n_] := Module[{d = Most@corDiv[n], x}, Plus @@ d > n && SeriesCoefficient[Series[Product[1 + x^d[[i]], {i, Length[d]}], {x, 0, n}], n] == 0]; Select[Range[10^5], corWeirdQ]
CROSSREFS
KEYWORD
nonn
AUTHOR
Amiram Eldar, Dec 23 2020
STATUS
approved