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

A363608
Expansion of Sum_{k>0} x^(4*k)/(1-x^k)^5.
4
0, 0, 0, 1, 5, 15, 35, 71, 126, 215, 330, 511, 715, 1036, 1370, 1891, 2380, 3201, 3876, 5061, 6020, 7645, 8855, 11207, 12655, 15665, 17676, 21512, 23751, 29000, 31465, 37851, 41250, 48756, 52400, 62602, 66045, 77691, 82966, 96521, 101270, 118966, 123410, 143397
OFFSET
1,5
LINKS
FORMULA
G.f.: Sum_{k>0} binomial(k,4) * x^k/(1 - x^k).
a(n) = Sum_{d|n} binomial(d,4).
MATHEMATICA
a[n_] := DivisorSum[n, Binomial[#, 4] &]; Array[a, 50] (* Amiram Eldar, Jul 25 2023 *)
PROG
(PARI) my(N=50, x='x+O('x^N)); concat([0, 0, 0], Vec(sum(k=1, N, x^(4*k)/(1-x^k)^5)))
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Seiichi Manyama, Jun 11 2023
STATUS
approved