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

A359054
a(n) = Sum_{d|n} sigma_d(d)^d.
3
1, 26, 21953, 5554571867, 298500366308609377, 11413459460309090640625021978, 256925761343390078522337875137209684721665, 6476754651706496208416137876625690606552226172163824554588
OFFSET
1,2
LINKS
FORMULA
G.f.: Sum_{k >= 1} (sigma_k(k) * x)^k/(1 - x^k).
MATHEMATICA
a[n_] := DivisorSum[n, DivisorSigma[#, #]^# &]; Array[a, 8] (* Amiram Eldar, Aug 27 2023 *)
PROG
(PARI) a(n) = sumdiv(n, d, sigma(d, d)^d);
(PARI) my(N=10, x='x+O('x^N)); Vec(sum(k=1, N, (sigma(k, k)*x)^k/(1-x^k)))
CROSSREFS
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Dec 14 2022
STATUS
approved