OFFSET
1,1
COMMENTS
First differs from A321146 at n = 24.
A coreful divisor d of a number k is a divisor with the same set of distinct prime factors as k, or rad(d) = rad(k), where rad(k) is the largest squarefree divisor of k (A007947).
From Amiram Eldar, Dec 01 2025: (Start)
A number k is a term if and only if k divided by its squarefree kernel is a weird number, i.e., A003557(k) is in A006037.
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
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]
KEYWORD
nonn
AUTHOR
Amiram Eldar, Dec 23 2020
STATUS
approved
