OFFSET
1,2
COMMENTS
This is neither the Moebius transform nor the inverse Moebius transform of n^n, although it is close to them.
LINKS
Harry J. Smith, Table of n, a(n) for n = 1..100
FORMULA
a(n) = Sum_{d|n} n^d.
a(n) ~ n^n. - Vaclav Kotesovec, Jun 05 2021
Conjectured g.f.: Sum_{m>=1} (m^m*Sum_{k=1..m}(x^(k*m)*Sum_{j=0..k}((-1)^j*(k - j)^m*binomial(m + 1, j)))/(1 - x^m)^(m + 1)), where the inner summation is the Triangle of Eulerian numbers A008292. - Miles Wilson, Jan 12 2025
EXAMPLE
MAPLE
A066108 := n -> add(n^d, d = NumberTheory[Divisors](n)); seq(A066108(n), n = 1 .. 19) - Miles Wilson, Jan 12 2025
MATHEMATICA
Table[Sum[n^d, {d, Divisors@ n}], {n, 19}] (* Michael De Vlieger, Dec 20 2015 *)
PROG
(PARI) a(n)=sumdiv(n, d, n^d ); /* Joerg Arndt, Oct 07 2012 */
CROSSREFS
KEYWORD
nonn
AUTHOR
Labos Elemer, Dec 05 2001
STATUS
approved