login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A372964
a(n) = Sum_{1 <= x_1, x_2, x_3, x_4 <= n} ( n/gcd(x_1, x_2, x_3, x_4, n) )^3.
7
1, 121, 2161, 15481, 78001, 261481, 823201, 1981561, 4726081, 9438121, 19485841, 33454441, 62746321, 99607321, 168560161, 253639801, 410333761, 571855801, 893864881, 1207533481, 1778937361, 2357786761, 3404813281, 4282153321, 6093828001, 7592304841, 10335939121
OFFSET
1,2
LINKS
FORMULA
a(n) = Sum_{d|n} mu(n/d) * (n/d)^3 * sigma_7(d).
From Amiram Eldar, May 21 2024: (Start)
Multiplicative with a(p^e) = (p^(7*e+7) - p^(7*e+3) + p^3 - 1)/(p^7-1).
Dirichlet g.f.: zeta(s)*zeta(s-7)/zeta(s-3).
Sum_{k=1..n} a(k) ~ c * n^8 / 8, where c = zeta(8)/zeta(5) = 0.968319491... . (End)
a(n) = Sum_{d|n} phi(n/d) * (n/d)^6 * sigma_6(d^2)/sigma_3(d^2). - Seiichi Manyama, May 24 2024
a(n) = Sum_{1 <= x_1, x_2, x_3, x_4 <= n} ( gcd(x_1, n)/gcd(x_1, x_2, x_3, x_4, n) )^4. - Seiichi Manyama, May 25 2024
MATHEMATICA
f[p_, e_] := (p^(7*e+7) - p^(7*e+3) + p^3 - 1)/(p^7-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)*(n/d)^3*sigma(d, 7));
CROSSREFS
KEYWORD
nonn,mult
AUTHOR
Seiichi Manyama, May 18 2024
STATUS
approved