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!)
A372930 a(n) = Sum_{1 <= x_1, x_2, x_3 <= n} gcd(x_1, x_2, x_3, n)^5. 3
1, 39, 269, 1304, 3249, 10491, 17149, 42176, 66069, 126711, 162381, 350776, 373489, 668811, 873981, 1353216, 1424769, 2576691, 2482957, 4236696, 4613081, 6332859, 6448509, 11345344, 10168625, 14566071, 16073721, 22362296, 20535537, 34085259, 28658941, 43331584 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(n) = Sum_{1 <= x_1, x_2, x_3, x_4, x_5 <= n} gcd(x_1, x_2, x_3, x_4, x_5, n)^3.
a(n) = Sum_{d|n} mu(n/d) * d^3 * sigma_2(d), where mu is the Moebius function A008683.
From Amiram Eldar, May 21 2024: (Start)
Multiplicative with a(p^e) = p^(3*e-3) * (p^3 * (p^(2*e+2)-1) - p^(2*e) + 1)/(p^2-1).
Dirichlet g.f.: zeta(s-3)*zeta(s-5)/zeta(s).
Sum_{k=1..n} a(k) ~ c * n^6 / 6, where c = zeta(3)/zeta(6) = 1.181564... (A157289). (End)
MATHEMATICA
f[p_, e_] := p^(3*e-3) * (p^3 * (p^(2*e+2)-1) - p^(2*e) + 1)/(p^2-1); a[1] = 1; a[n_] := Times @@ f @@@ FactorInteger[n]; Array[a, 100] (* Amiram Eldar, May 21 2024 *)
PROG
(PARI) a(n) = sumdiv(n, d, moebius(n/d)*d^3*sigma(d, 2));
CROSSREFS
Sequence in context: A101627 A229639 A070146 * A327344 A190537 A187095
KEYWORD
nonn,mult
AUTHOR
Seiichi Manyama, May 17 2024
STATUS
approved

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 July 29 16:14 EDT 2024. Contains 374734 sequences. (Running on oeis4.)