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!)
A363661 a(n) = Sum_{d|n} (n/d)^d * binomial(d+n,n). 4
2, 12, 32, 150, 282, 1890, 3488, 21582, 54650, 282612, 705564, 4072224, 10400782, 55006530, 158987232, 790611350, 2333606526, 11573213196, 35345264180, 168673694070, 540848064614, 2500462200182, 8233430728152, 37445946291600, 126411051769652 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
All terms are even. - Robert Israel, Nov 23 2023
LINKS
FORMULA
a(n) = [x^n] Sum_{k>0} (1/(1 - k*x^k)^(n+1) - 1).
MAPLE
f:= proc(n) local d;
add((n/d)^d * binomial(n+d, n), d = numtheory:-divisors(n))
end proc:
map(f, [$1..30]); # Robert Israel, Nov 23 2023
MATHEMATICA
a[n_] := DivisorSum[n, (n/#)^# * Binomial[# + n, n] &]; Array[a, 30] (* Amiram Eldar, Jul 05 2023 *)
PROG
(PARI) a(n) = sumdiv(n, d, (n/d)^d*binomial(d+n, n));
CROSSREFS
Sequence in context: A102080 A000647 A358852 * A133577 A106185 A098203
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Jun 14 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 June 23 07:33 EDT 2024. Contains 373629 sequences. (Running on oeis4.)