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!)
A342608 a(n) = Sum_{d|n} phi(d)^(n+d). 4
1, 2, 65, 258, 1048577, 4610, 78364164097, 4294971394, 101559956672513, 1100585369602, 10000000000000000000001, 281474977071106, 11447545997288281555215581185, 6140964151415455875074, 1237940039285381374411014145, 79228162514264619068521709570 (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 + n/gcd(k,n) - 1).
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*p).
MATHEMATICA
a[n_] := DivisorSum[n, EulerPhi[#]^(n + #) &]; Array[a, 20] (* Amiram Eldar, Mar 17 2021 *)
PROG
(PARI) a(n) = sumdiv(n, d, eulerphi(d)^(n+d));
(PARI) a(n) = sum(k=1, n, eulerphi(n/gcd(k, n))^(n+n/gcd(k, n)-1));
(PARI) my(N=20, x='x+O('x^N)); Vec(sum(k=1, N, (eulerphi(k)^2*x)^k/(1-(eulerphi(k)*x)^k)))
CROSSREFS
Sequence in context: A303376 A041511 A156651 * A294179 A002604 A294273
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Mar 16 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 18:17 EDT 2024. Contains 371962 sequences. (Running on oeis4.)