login
A396548
The number of coreful divisors of n that are not exponential unitary divisors of n.
2
0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 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, 2, 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, 2, 2, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0
OFFSET
1,16
COMMENTS
First differs from A380399 at n = 64.
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 is a unitary divisor of the p-adic valuation of n, then d is an exponential unitary divisor of n. Therefore, all the exponential unitary 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 A396549(n).
LINKS
FORMULA
a(n) = A005361(n) - A278908(n).
a(n) = 0 if and only if n is cubefree (A004709).
a(n) = A396543(n) if and only if n is an exponentially squarefree number (A209061).
Asymptotic mean: Limit_{m->oo} (1/m) * Sum_{k=1..m} a(k) = A082695 - A393489 = 0.400431117447579324113... .
MATHEMATICA
a[n_] := Module[{e = FactorInteger[n][[;; , 2]]}, Times @@ e - Times @@ (2^PrimeNu[e])]; Array[a, 100]
PROG
(PARI) a(n) = my(e = factor(n)[, 2]); vecprod(e) - vecprod(apply(e -> 1<<omega(e), e));
KEYWORD
nonn,easy
AUTHOR
Amiram Eldar, May 29 2026
STATUS
approved