login
A396543
The number of coreful divisors of n that are not exponential divisors of n.
3
0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0
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
FORMULA
a(n) = A005361(n) - A049419(n).
a(n) = 0 if and only if n is cubefree (A004709).
a(p^e) = A049820(e) for a prime p and e >= 1.
Asymptotic mean: Limit_{m->oo} (1/m) * Sum_{k=1..m} a(k) = A082695 - A327837 = 0.341279334515341152707... .
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));
KEYWORD
nonn,easy
AUTHOR
Amiram Eldar, May 29 2026
STATUS
approved