cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A342539 a(n) = Sum_{k=1..n} phi(gcd(k, n))^n.

Original entry on oeis.org

1, 2, 10, 19, 1028, 132, 279942, 65798, 10078726, 2097160, 100000000010, 16797702, 106993205379084, 156728328204, 35186519703560, 281479271809036, 295147905179352825872, 203119914385420, 708235345355337676357650, 1152924803145924620, 46005163783270994804748, 20000000000000000000020
Offset: 1

Views

Author

Seiichi Manyama, Mar 15 2021

Keywords

Crossrefs

Programs

  • Mathematica
    a[n_] := DivisorSum[n, EulerPhi[n/#] * EulerPhi[#]^n &]; Array[a, 20] (* Amiram Eldar, Mar 15 2021 *)
  • PARI
    a(n) = sum(k=1, n, eulerphi(gcd(k, n))^n);
    
  • PARI
    a(n) = sumdiv(n, d, eulerphi(n/d)*eulerphi(d)^n);

Formula

a(n) = Sum_{d|n} phi(n/d) * phi(d)^n.
If p is prime, a(p) = p-1 + (p-1)^p.
a(n) = Sum_{k=1..n} phi(n/gcd(n,k))^(n-1)*phi(gcd(n,k)). - Richard L. Ollerton, May 09 2021