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

A167531
a(n) = Sum_{d divides n} d*(n/d)^(d-1).
12
1, 3, 4, 9, 6, 25, 8, 49, 37, 101, 12, 373, 14, 477, 496, 1313, 18, 3907, 20, 6941, 5272, 11309, 24, 49321, 3151, 53301, 59320, 144789, 30, 468181, 32, 657473, 649936, 1114181, 121416, 5124961, 38, 4980813, 6909280, 13756761, 42, 44768725, 44
OFFSET
1,2
LINKS
FORMULA
G.f.: Sum{k>0} x^k/(1-k*x^k)^2.
PROG
(PARI) a(n)=sumdiv(n, d, d*(n/d)^(d-1))
(PARI) N=66; x='x+O('x^N); Vec(sum(k=1, N, x^k/(1-k*x^k)^2)) \\ Seiichi Manyama, Sep 03 2019
CROSSREFS
Sequence in context: A264786 A055225 A054791 * A344195 A376683 A356541
KEYWORD
nonn
AUTHOR
STATUS
approved