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!)
A373061 a(n) = Sum_{1 <= x_1, x_2, x_3 <= n} gcd(x_1, x_2, n)/gcd(x_1, x_2, x_3, n). 2
1, 9, 31, 77, 141, 279, 379, 637, 877, 1269, 1431, 2387, 2341, 3411, 4371, 5181, 5169, 7893, 7183, 10857, 11749, 12879, 12651, 19747, 18041, 21069, 24043, 29183, 25173, 39339, 30691, 41789, 44361, 46521, 53439, 67529, 51949, 64647, 72571, 89817, 70521, 105741 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000 (terms 1..200 from Seiichi Manyama)
FORMULA
From Amiram Eldar, May 31 2024: (Start)
Multiplicative with a(p^e) = (p^(3*e)*(p+1)^3 - p^(2*e)*(p^2+p+1) + 1)/((p^2+p+1)*(p+1)).
Dirichlet g.f.: zeta(s)*zeta(s-2)*zeta(s-3)/zeta(s-1)^2.
Sum_{k=1..n} a(k) ~ c * n^4 / 4, where c = zeta(2) * zeta(4) / zeta(3)^2 = Pi^6/(540*zeta(3)^2) = 1.232126852811... . (End)
MATHEMATICA
f[p_, e_] := (p^(3*e)*(p+1)^3 - p^(2*e)*(p^2+p+1) + 1)/((p^2+p+1)*(p+1)); a[1] = 1; a[n_] := Times @@ f @@@ FactorInteger[n]; Array[a, 100] (* Amiram Eldar, May 31 2024 *)
PROG
(PARI) a(n) = sum(i=1, n, sum(j=1, n, sum(k=1, n, gcd([i, j, n])/gcd([i, j, k, n]))));
CROSSREFS
Sequence in context: A344675 A177342 A224000 * A118444 A321598 A048374
KEYWORD
nonn,mult
AUTHOR
Seiichi Manyama, May 21 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 27 15:24 EDT 2024. Contains 373746 sequences. (Running on oeis4.)