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!)
A373103 a(n) = Sum_{1 <= x_1, x_2, x_3, x_4, x_5 <= n} ( n/gcd(x_1, x_2, x_3, x_4, x_5, n) )^4. 4
1, 497, 19603, 254449, 1952501, 9742691, 40351207, 130277873, 385845769, 970392997, 2357933051, 4987963747, 10604470813, 20054549879, 38274877103, 66702270961, 118587792977, 191765347193, 322687567459, 496811926949, 791004710821, 1171892726347, 1801152381623 (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, n)/gcd(x_1, x_2, x_3, x_4, x_5, n) )^5.
a(n) = Sum_{d|n} mu(n/d) * (n/d)^4 * sigma_9(d).
a(n) = Sum_{d|n} phi(n/d) * (n/d)^8 * sigma_8(d^2)/sigma_4(d^2).
From Amiram Eldar, May 25 2024: (Start)
Multiplicative with a(p^e) = (p^(9*e+9) - p^(9*e+4) + p^4 - 1)/(p^9-1).
Dirichlet g.f.: zeta(s)*zeta(s-9)/zeta(s-4).
Sum_{k=1..n} a(k) ~ c * n^10 / 10, where c = zeta(10)/zeta(6) = Pi^4/99 = 0.983930212464... . (End)
MATHEMATICA
f[p_, e_] := (p^(9*e+9) - p^(9*e+4) + p^4 - 1)/(p^9-1); a[1] = 1; a[n_] := Times @@ f @@@ FactorInteger[n]; Array[a, 24] (* Amiram Eldar, May 25 2024 *)
PROG
(PARI) a(n) = sumdiv(n, d, moebius(n/d)*(n/d)^4*sigma(d, 9));
(PARI) a(n) = sumdiv(n, d, eulerphi(n/d)*(n/d)^8*sigma(d^2, 8)/sigma(d^2, 4));
CROSSREFS
Sequence in context: A097785 A145922 A145981 * A210785 A064255 A067917
KEYWORD
nonn,mult
AUTHOR
Seiichi Manyama, May 25 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 June 17 07:15 EDT 2024. Contains 373433 sequences. (Running on oeis4.)