OFFSET
1,32
COMMENTS
The coreful divisors (A284318) of n are the divisors d of n such that every prime factor of n also divides d. If, additionally, for every prime p dividing n, the p-adic valuation (the exponent of p in the prime factorization) of d divides the p-adic valuation of n, then d is an exponential divisor of n. Therefore, all the exponential divisors of n are by definition coreful divisors of n.
a(n) depends only on the prime signature of n (A118914).
The sum of these divisors is A396544(n).
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
FORMULA
MATHEMATICA
a[n_] := Module[{e = FactorInteger[n][[;; , 2]]}, Times @@ e - Times @@ DivisorSigma[0, e]]; Array[a, 100]
PROG
(PARI) a(n) = my(e = factor(n)[, 2]); vecprod(e) - vecprod(apply(numdiv, e));
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Amiram Eldar, May 29 2026
STATUS
approved
