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!)
A342488 a(n) = Sum_{d|n} phi(d)^(n/d+1). 5
1, 2, 5, 6, 17, 14, 37, 26, 53, 82, 101, 74, 145, 254, 385, 162, 257, 398, 325, 1218, 1697, 1102, 485, 1058, 4497, 1874, 2645, 8394, 785, 19330, 901, 2306, 14497, 4354, 112769, 17738, 1297, 6158, 37697, 270082, 1601, 316130, 1765, 105498, 1165441, 11134, 2117, 162050, 1681381 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(n) = Sum_{k=1..n} phi(n/gcd(k, n))^gcd(k, n).
G.f.: Sum_{k>=1} phi(k)^2 * x^k/(1 - phi(k) * x^k).
If p is prime, a(p) = 1 + (p-1)^2 = A002522(p-1).
a(n) = Sum_{k=1..n} phi(gcd(k, n))^(n/gcd(k, n) + 1)/phi(n/gcd(k, n)). - Richard L. Ollerton, May 07 2021
MATHEMATICA
a[n_] := DivisorSum[n, EulerPhi[#]^(n/#+1) &]; Array[a, 50] (* Amiram Eldar, Mar 14 2021 *)
PROG
(PARI) a(n) = sumdiv(n, d, eulerphi(d)^(n/d+1));
(PARI) a(n) = sum(k=1, n, eulerphi(n/gcd(k, n))^gcd(k, n));
(PARI) my(N=66, x='x+O('x^N)); Vec(sum(k=1, N, eulerphi(k)^2*x^k/(1-eulerphi(k)*x^k)))
CROSSREFS
Sequence in context: A306885 A029939 A082198 * A098871 A227623 A146477
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Mar 13 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 16 13:43 EDT 2024. Contains 371720 sequences. (Running on oeis4.)