login
A391988
The number of exponential divisors of the exponentially squarefree numbers.
2
1, 1, 1, 2, 1, 1, 1, 2, 2, 1, 1, 2, 1, 1, 1, 1, 2, 1, 2, 1, 1, 1, 2, 2, 1, 2, 2, 1, 1, 1, 2, 1, 1, 1, 4, 1, 1, 1, 2, 1, 1, 1, 2, 2, 1, 1, 2, 2, 1, 2, 1, 2, 1, 2, 1, 1, 1, 2, 1, 1, 2, 4, 1, 1, 1, 2, 1, 1, 1, 4, 1, 1, 2, 2, 1, 1, 1, 1, 1, 2, 1, 1, 1, 2, 1, 2, 1, 2
OFFSET
1,4
COMMENTS
First differs from A388973 at n = 246.
Also, the number of exponential unitary divisors of the exponentially squarefree numbers.
LINKS
FORMULA
a(n) = A049419(A209061(n)).
a(n) = A278908(A209061(n)).
Asymptotic mean: lim_{m->oo} (1/m) * Sum_{k=1..m} a(k) = (1/d) * Product_{p prime} (1 + Sum_{k>=2} (A074823(k) - A074823(k-1))/p^k) = 1.49848918426328501463..., where d = A262276.
MATHEMATICA
s[n_] := Module[{e = FactorInteger[n][[;; , 2]]}, Boole[AllTrue[e, SquareFreeQ]] * Times @@ (2^PrimeNu[e])]; s[1] = 1; Select[Array[s, 100], # > 0 &]
PROG
(PARI) f(n) = {my(e = factor(n)[, 2]); for(i = 1, #e, if(!issquarefree(e[i]), return(0))); vecprod(apply(x -> 2^omega(x), e)); }
list(lim) = select(x -> x > 0, vector(lim, i, f(i)));
KEYWORD
nonn,easy
AUTHOR
Amiram Eldar, Dec 26 2025
STATUS
approved