The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A368980 The number of exponential divisors of n that are squares (A000290). 3

%I #9 Jan 12 2024 22:52:12

%S 1,0,0,1,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,

%T 0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,

%U 0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0

%N The number of exponential divisors of n that are squares (A000290).

%H Amiram Eldar, <a href="/A368980/b368980.txt">Table of n, a(n) for n = 1..10000</a>

%F a(n) = A049419(n^2).

%F Multiplicative with a(p^e) = A183063(e), or equivalently, a(p^e) = 0 if e is odd, and A000005(e/2) if e is even.

%F a(n) >= 0, with equality if and only if n is not a square number (A000037).

%F a(n) <= A049419(n), with equality if and only if n = 1.

%F Sum_{k=1..n} a(k) ~ c * sqrt(n), where c = 1.602317... (A327837).

%t f[p_, e_] := If[OddQ[e], 0, DivisorSigma[0, e/2]]; a[1] = 1; a[n_] := Times @@ f @@@ FactorInteger[n]; Array[a, 100]

%o (PARI) a(n) = vecprod(apply(x -> if(x%2, 0, numdiv(x/2)), factor(n)[, 2]));

%Y Cf. A000005, A000037, A000290, A049419, A183063, A322791, A327837, A368979.

%Y Similar sequences: A046951, A056624, A358260, A368978.

%K nonn,easy,mult

%O 1,16

%A _Amiram Eldar_, Jan 11 2024

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 12 23:55 EDT 2024. Contains 372497 sequences. (Running on oeis4.)