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!)
A342490 a(n) = Sum_{d|n} phi(d)^(n-1). 2
1, 2, 5, 10, 257, 66, 46657, 16514, 1679873, 524290, 10000000001, 4200450, 8916100448257, 26121388034, 4398314962945, 35185445863426, 18446744073709551617, 33853319151618, 39346408075296537575425, 144115737832194050, 3833763648605916233729, 2000000000000000000002 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(n) = Sum_{k=1..n} phi(n/gcd(k, n))^(n-2).
G.f.: Sum_{k>=1} phi(k)^(k-1) * x^k/(1 - (phi(k) * x)^k).
If p is prime, a(p) = 1 + (p-1)^(p-1) = A014566(p-1).
MATHEMATICA
a[n_] := DivisorSum[n, EulerPhi[#]^(n-1) &]; Array[a, 20] (* Amiram Eldar, Mar 14 2021 *)
PROG
(PARI) a(n) = sumdiv(n, d, eulerphi(d)^(n-1));
(PARI) a(n) = sum(k=1, n, eulerphi(n/gcd(k, n))^(n-2));
(PARI) my(N=40, x='x+O('x^N)); Vec(sum(k=1, N, eulerphi(k)^(k-1)*x^k/(1-(eulerphi(k)*x)^k)))
CROSSREFS
Sequence in context: A133516 A342489 A342612 * A163784 A215615 A018862
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 24 15:18 EDT 2024. Contains 371960 sequences. (Running on oeis4.)