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”).

A342437
a(n) = Sum_{k=1..n} gcd(k,n)^(n/gcd(k,n) - 1).
1
1, 2, 3, 5, 5, 14, 7, 25, 25, 74, 11, 161, 13, 398, 383, 657, 17, 2110, 19, 3341, 4485, 10262, 23, 19569, 2521, 49178, 39547, 74441, 29, 221462, 31, 328737, 590753, 1048610, 103379, 1905565, 37, 4718630, 6377655, 5573801, 41, 22462826, 43, 31459985, 40634221, 92274734, 47
OFFSET
1,2
LINKS
FORMULA
a(n) = Sum_{d|n} phi(n/d) * d^(n/d-1).
If p is prime, a(p) = p.
MATHEMATICA
a[n_] := Sum[GCD[k, n]^(n/GCD[k, n] - 1), {k, 1, n}]; Array[a, 50] (* Amiram Eldar, Mar 12 2021 *)
PROG
(PARI) a(n) = sum(k=1, n, gcd(k, n)^(n/gcd(k, n)-1));
(PARI) a(n) = sumdiv(n, d, eulerphi(n/d)*d^(n/d-1));
CROSSREFS
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Mar 12 2021
STATUS
approved