login
A392629
The number of coreful infinitary divisors of n that are numbers whose number of divisors is a power of 2.
3
1, 1, 1, 0, 1, 1, 1, 2, 0, 1, 1, 0, 1, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 2, 0, 1, 2, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 2, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 1, 0, 1, 2, 1, 2, 1, 1, 1, 0, 1, 1, 0, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 0, 0, 1, 1, 1, 0, 0, 1, 1, 0, 1, 1, 1, 2, 1
OFFSET
1,8
COMMENTS
For the definition of a coreful divisor see A284318 and A307958, and for the definition of an infinitary divisor see A037445.
LINKS
FORMULA
Multiplicative with a(p^e) = A007814(e+1).
a(n) = 0 if and only if n is not an exponentially odd number (A268335, i.e., n is in A072587).
a(n) <= A363329(n), with equality if and only if n is squarefree (A005117).
Asymptotic mean: Limit_{m->oo} (1/m) * Sum_{k=1..m} a(k) = Product_{p prime} f(1/p) = 0.79378624236775721631..., where f(x) = (1-x) * (1 + Sum_{k>=1} x^(2^k-1)/(1-x^(2^k))).
MATHEMATICA
f[p_, e_] := IntegerExponent[e + 1, 2]; a[1] = 1; a[n_] := Times @@ f @@@ FactorInteger[n]; Array[a, 100]
PROG
(PARI) a(n) = vecprod(apply(x -> valuation(x+1, 2), factor(n)[, 2]));
KEYWORD
nonn,mult,easy
AUTHOR
Amiram Eldar, Jan 18 2026
STATUS
approved