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

A326400
Expansion of Sum_{k>=1} k * x^(2*k) / (1 - x^(3*k)).
6
0, 1, 0, 2, 1, 3, 0, 5, 0, 7, 1, 6, 0, 8, 3, 10, 1, 9, 0, 15, 0, 13, 1, 15, 5, 14, 0, 16, 1, 21, 0, 21, 3, 19, 8, 18, 0, 20, 0, 35, 1, 24, 0, 27, 9, 25, 1, 30, 0, 36, 3, 28, 1, 27, 16, 40, 0, 31, 1, 45, 0, 32, 0, 42, 14, 39, 0, 39, 3, 56, 1, 45, 0, 38, 15, 40, 8, 42, 0, 71
OFFSET
1,4
LINKS
FORMULA
a(n) = Sum_{d|n, n/d==2 (mod 3)} d.
G.f.: Sum_{k>0} x^(3*k-1) / (1 - x^(3*k-1))^2. - Seiichi Manyama, Jun 29 2023
MATHEMATICA
nmax = 80; CoefficientList[Series[Sum[k x^(2 k)/(1 - x^(3 k)), {k, 1, nmax}], {x, 0, nmax}], x] // Rest
Table[DivisorSum[n, # &, MemberQ[{2}, Mod[n/#, 3]] &], {n, 1, 80}]
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Sep 11 2019
STATUS
approved