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!)
A344222 a(n) = Sum_{k=1..n} tau(gcd(k,n)^4), where tau(n) is the number of divisors of n. 5

%I #21 Nov 16 2022 06:56:17

%S 1,6,7,16,9,42,11,36,25,54,15,112,17,66,63,76,21,150,23,144,77,90,27,

%T 252,49,102,79,176,33,378,35,156,105,126,99,400,41,138,119,324,45,462,

%U 47,240,225,162,51,532,81,294,147,272,57,474,135,396,161,198,63,1008,65,210,275,316,153,630,71

%N a(n) = Sum_{k=1..n} tau(gcd(k,n)^4), where tau(n) is the number of divisors of n.

%H Seiichi Manyama, <a href="/A344222/b344222.txt">Table of n, a(n) for n = 1..10000</a>

%F a(n) = Sum_{d|n} phi(n/d) * tau(d^4).

%F a(n) = n * Sum_{d|n} 4^omega(d) / d.

%F If p is prime, a(p) = 4 + p.

%F From _Amiram Eldar_, Nov 15 2022: (Start)

%F Multiplicative with a(p^e) = (p^e*(p + 3) - 4)/(p - 1).

%F Sum_{k=1..n} a(k) ~ c * n^2, where c = (Pi^2/12) * Product_{p prime} (1 + 3/p^2) = 2.4997873122... . (End)

%t Table[Sum[DivisorSigma[0,GCD[k,n]^4],{k,n}],{n,100}] (* _Giorgos Kalogeropoulos_, May 13 2021 *)

%t f[p_, e_] := (p^e*(p + 3) - 4)/(p - 1); a[1] = 1; a[n_] := Times @@ f @@@ FactorInteger[n]; Array[a, 100] (* _Amiram Eldar_, Nov 15 2022 *)

%o (PARI) a(n) = sum(k=1, n, numdiv(gcd(k, n)^4));

%o (PARI) a(n) = sumdiv(n, d, eulerphi(n/d)*numdiv(d^4));

%o (PARI) a(n) = n*sumdiv(n, d, 4^omega(d)/d);

%Y Cf. A060648, A072691, A344221, A344223, A344224, A344225.

%K nonn,mult

%O 1,2

%A _Seiichi Manyama_, May 12 2021

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 April 25 10:47 EDT 2024. Contains 371967 sequences. (Running on oeis4.)