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!)
A342535 a(n) = Sum_{k=1..n} phi(gcd(k, n))^3. 3
1, 2, 10, 11, 68, 20, 222, 78, 238, 136, 1010, 110, 1740, 444, 680, 604, 4112, 476, 5850, 748, 2220, 2020, 10670, 780, 8276, 3480, 6330, 2442, 21980, 1360, 27030, 4792, 10100, 8224, 15096, 2618, 46692, 11700, 17400, 5304, 64040, 4440, 74130, 11110, 16184, 21340, 97382, 6040 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(n) = Sum_{d|n} phi(n/d) * phi(d)^3.
a(n) = Sum_{k=1..n} phi(gcd(k,n))*phi(n/gcd(k,n))^2. - Richard L. Ollerton, May 10 2021
Sum_{k=1..n} a(k) ~ c * n^3, where c = (zeta(3)/4) * Product_{p prime} (1 - 3/p^2 + 3/p^3 - 2/p^4 + 3/p^6 - 3/p^7 + 1/p^8) = 0.093622450005... . - Amiram Eldar, Nov 15 2022
MATHEMATICA
a[n_] := DivisorSum[n, EulerPhi[n/#] * EulerPhi[#]^3 &]; Array[a, 50] (* Amiram Eldar, Mar 15 2021 *)
Table[Sum[EulerPhi[GCD[k, n]]^3, {k, n}], {n, 50}] (* Harvey P. Dale, Jul 15 2021 *)
PROG
(PARI) a(n) = sum(k=1, n, eulerphi(gcd(k, n))^3);
(PARI) a(n) = sumdiv(n, d, eulerphi(n/d)*eulerphi(d)^3);
CROSSREFS
Sequence in context: A174570 A072545 A023151 * A265747 A104459 A008560
KEYWORD
nonn,mult
AUTHOR
Seiichi Manyama, Mar 15 2021
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 April 19 19:02 EDT 2024. Contains 371798 sequences. (Running on oeis4.)