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

A363978
Expansion of Sum_{k>0} x^(3*k) / (1 - x^(4*k))^3.
1
0, 0, 1, 0, 0, 1, 3, 0, 1, 0, 6, 1, 0, 3, 11, 0, 0, 1, 15, 0, 4, 6, 21, 1, 0, 0, 29, 3, 0, 11, 36, 0, 7, 0, 48, 1, 0, 15, 56, 0, 0, 4, 66, 6, 11, 21, 78, 1, 3, 0, 92, 0, 0, 29, 111, 3, 16, 0, 120, 11, 0, 36, 140, 0, 0, 7, 153, 0, 22, 48, 171, 1, 0, 0, 201, 15, 9, 56, 210, 0, 29, 0, 231, 4, 0, 66, 254, 6, 0
OFFSET
1,7
FORMULA
G.f.: Sum_{k>0} k*(k+1)/2 * x^(4*k-1) / (1 - x^(4*k-1)).
a(n) = Sum_{d|n, d==3 mod 4} binomial((d+1)/4+1,2).
MATHEMATICA
a[n_] := DivisorSum[n, Binomial[(#+1)/4+1, 2] &, Mod[#, 4] == 3 &]; Array[a, 100] (* Amiram Eldar, Jun 30 2023 *)
PROG
(PARI) a(n) = sumdiv(n, d, (d%4==3)*binomial((d+1)/4+1, 2));
CROSSREFS
Cf. A363973.
Sequence in context: A022904 A238341 A242451 * A262964 A135481 A180049
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Jun 30 2023
STATUS
approved