login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A359701 a(n) = Sum_{d|n} d^(d + n/d - 2). 0
1, 3, 10, 69, 626, 7812, 117650, 2097425, 43046803, 1000003158, 25937424602, 743008418676, 23298085122482, 793714774077816, 29192926025406980, 1152921504623628545, 48661191875666868482, 2185911559739084235093, 104127350297911241532842 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
G.f.: Sum_{k>0} k^(k-1) * x^k / (1 - k * x^k).
If p is prime, a(p) = 1 + p^(p-1).
MATHEMATICA
a[n_] := DivisorSum[n, #^(# + n/# - 2) &]; Array[a, 20] (* Amiram Eldar, Aug 14 2023 *)
PROG
(PARI) a(n) = sumdiv(n, d, d^(d+n/d-2));
(PARI) my(N=20, x='x+O('x^N)); Vec(sum(k=1, N, k^(k-1)*x^k/(1-k*x^k)))
CROSSREFS
Sequence in context: A072638 A262843 A080526 * A308814 A342629 A232213
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Jan 11 2023
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 13:34 EDT 2024. Contains 371971 sequences. (Running on oeis4.)