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!)
A360161 a(n) is the sum of unitary divisors of n that are odd squares minus the sum of unitary divisors of n that are even squares. 1

%I #11 Jan 29 2023 12:12:27

%S 1,1,1,-3,1,1,1,1,10,1,1,-3,1,1,1,-15,1,10,1,-3,1,1,1,1,26,1,1,-3,1,1,

%T 1,1,1,1,1,-30,1,1,1,1,1,1,1,-3,10,1,1,-15,50,26,1,-3,1,1,1,1,1,1,1,

%U -3,1,1,10,-63,1,1,1,-3,1,1,1,10,1,1,26,-3,1,1,1

%N a(n) is the sum of unitary divisors of n that are odd squares minus the sum of unitary divisors of n that are even squares.

%C The unitary analog of A344300.

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

%F a(n) = Sum_{d|n, gcd(d, n/d)=1, d square} (-1)^(d+1) * d.

%F a(n) = A360160(n) - 2 * A358347(n).

%F Multiplicative with a(2^e) = 1 - 2^e if e is even and 1 if e is odd, and for p > 2, a(p^e) = p^e + 1 if e is even and 1 if e is odd.

%F Dirichlet g.f.: (zeta(s)*zeta(2*s-2)/zeta(3*s-2))*(2^(3*s)-2^(s+3)+4)/(2^(3*s)-4).

%F Sum_{k=1..n} a(k) ~ c * n^(3/2), where c = zeta(3/2)/(3*zeta(5/2)*(4*sqrt(2)-1)) = 0.1393911255... .

%t f[p_, e_] := If[OddQ[e], 1, p^e + 1]; f[2, e_] := If[OddQ[e], 1, 1 - 2^e]; a[1] = 1; a[n_] := Times @@ f @@@ FactorInteger[n]; Array[a, 100]

%o (PARI) a(n) = {my(f = factor(n)); prod(i = 1, #f~, if(f[i, 1] == 2, if(f[i, 2]%2, 1, 1 - 2^f[i, 2]), if(f[i, 2]%2, 1, f[i, 1]^f[i, 2] + 1))); }

%Y Cf. A016742, A016754, A078434, A247041, A344300, A358347, A360160.

%K sign,easy,mult

%O 1,4

%A _Amiram Eldar_, Jan 29 2023

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 9 05:21 EDT 2024. Contains 372344 sequences. (Running on oeis4.)