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!)
A372966 a(n) = sigma_8(n^2)/sigma_4(n^2). 8
1, 241, 6481, 61681, 390001, 1561921, 5762401, 15790321, 42521761, 93990241, 214344241, 399754561, 815702161, 1388738641, 2527596481, 4042322161, 6975673921, 10247744401, 16983432721, 24055651681, 37346120881, 51656962081, 78310705441, 102337070401 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Apparently, a(n) == 1 (mod 240). - Hugo Pfoertner, May 20 2024
LINKS
FORMULA
a(n) = Sum_{1 <= x_1, x_2, x_3, x_4 <= n} ( n/gcd(x_1, x_2, x_3, x_4, n) )^4.
a(n) = Sum_{d|n} mu(n/d) * (n/d)^4 * sigma_8(d).
From Amiram Eldar, May 20 2024: (Start)
Multiplicative with a(p^e) = (p^(8*e + 4) + 1)/(p^4 + 1).
Dirichlet g.f.: zeta(s)*zeta(s-8)/zeta(s-4).
Sum_{k=1..n} a(k) ~ (zeta(9)/(9*zeta(5))) * n^9. (End)
MATHEMATICA
f[p_, e_] := (p^(8*e + 4) + 1)/(p^4 + 1); a[1] = 1; a[n_] := Times @@ f @@@ FactorInteger[n]; Array[a, 24] (* Amiram Eldar, May 20 2024 *)
PROG
(PARI) a(n) = sigma(n^2, 8)/sigma(n^2, 4);
(PARI) a(n) = sumdiv(n, d, moebius(n/d)*(n/d)^4*sigma(d, 8));
CROSSREFS
Cf. A372965.
Sequence in context: A220056 A165383 A006687 * A060893 A165375 A183887
KEYWORD
nonn,mult
AUTHOR
Seiichi Manyama, May 18 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 August 4 03:47 EDT 2024. Contains 374905 sequences. (Running on oeis4.)