OFFSET
1,4
COMMENTS
First differs from A388973 at n = 246.
Also, the number of exponential unitary divisors of the exponentially squarefree numbers.
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
FORMULA
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)));
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Amiram Eldar, Dec 26 2025
STATUS
approved
