login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A342485
a(n) = Sum_{d|n} phi(d)^(d+1).
6
1, 2, 17, 34, 4097, 146, 1679617, 262178, 60466193, 4198402, 1000000000001, 67109042, 1283918464548865, 470186664194, 281474976714769, 2251799813947426, 4722366482869645213697, 609359800476818, 12748236216396078174437377, 9223372036858974242
OFFSET
1,2
LINKS
FORMULA
a(n) = Sum_{k=1..n} phi(n/gcd(k, n))^(n/gcd(k, n)).
G.f.: Sum_{k>=1} phi(k)^(k+1) * x^k/(1 - x^k).
If p is prime, a(p) = 1 + (p-1)^(p+1).
a(n) = Sum_{k=1..n} phi(gcd(n,k))^(gcd(n,k) + 1)/phi(n/gcd(n,k)). - Richard L. Ollerton, May 07 2021
MATHEMATICA
a[n_] := DivisorSum[n, EulerPhi[#]^(#+1) &]; Array[a, 20] (* Amiram Eldar, Mar 14 2021 *)
PROG
(PARI) a(n) = sumdiv(n, d, eulerphi(d)^(d+1));
(PARI) a(n) = sum(k=1, n, eulerphi(n/gcd(k, n))^(n/gcd(k, n)));
(PARI) my(N=40, x='x+O('x^N)); Vec(sum(k=1, N, eulerphi(k)^(k+1)*x^k/(1-x^k)))
CROSSREFS
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Mar 13 2021
STATUS
approved