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!)
A339482 a(n) = Sum_{d|n} d^(n-d+1) * binomial(d+n/d-2, d-1). 4
1, 3, 4, 21, 6, 346, 8, 4617, 13132, 80696, 12, 4903847, 14, 40410966, 756336736, 2416181265, 18, 306560794753, 20, 6941876836216, 132964265599502, 34522735212626, 24, 116720277621236637, 33378601074218776, 51185893450298400, 60788365423272068968 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
G.f.: Sum_{k >= 1} k * (x/(1 - (k * x)^k))^k.
If p is prime, a(p) = 1 + p.
MATHEMATICA
a[n_] := DivisorSum[n, #^(n - # + 1) * Binomial[# + n/# - 2, # - 1] &]; Array[a, 30] (* Amiram Eldar, Apr 25 2021 *)
PROG
(PARI) a(n) = sumdiv(n, d, d^(n-d+1)*binomial(d+n/d-2, d-1));
(PARI) my(N=40, x='x+O('x^N)); Vec(sum(k=1, N, k*(x/(1-(k*x)^k))^k))
CROSSREFS
Sequence in context: A206032 A197410 A308689 * A359883 A032830 A225478
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Apr 24 2021
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 19 14:04 EDT 2024. Contains 371792 sequences. (Running on oeis4.)