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

A363259
Expansion of Sum_{k>0} k * x^(2*k) / (1 - x^(4*k-1)).
1
0, 1, 0, 2, 1, 3, 0, 5, 0, 5, 3, 6, 0, 8, 0, 8, 4, 11, 0, 11, 0, 11, 5, 12, 2, 14, 0, 17, 6, 15, 0, 19, 0, 17, 7, 18, 0, 24, 5, 20, 8, 21, 0, 23, 0, 25, 9, 29, 0, 29, 0, 26, 16, 27, 0, 29, 0, 35, 11, 32, 3, 32, 0, 32, 12, 33, 7, 46, 0, 35, 13, 39, 0, 40, 0, 38, 14, 47, 0, 41, 8, 41, 22, 42, 0, 49, 0
OFFSET
1,4
FORMULA
a(n) = (1/4) * Sum_{d | 4*n-2, d==3 (mod 4)} (d+1).
G.f.: Sum_{k>0} x^(3*k-1) / (1 - x^(4*k-2))^2.
MATHEMATICA
a[n_] := DivisorSum[4*n - 2, # + 1 &, Mod[#, 4] == 3 &]/4; Array[a, 100] (* Amiram Eldar, Jul 08 2023 *)
PROG
(PARI) a(n) = sumdiv(4*n-2, d, (d%4==3)*(d+1))/4;
CROSSREFS
Cf. A363392.
Sequence in context: A127474 A364015 A363158 * A326400 A281617 A280544
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Jul 08 2023
STATUS
approved