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

A364065
Expansion of Sum_{k>0} k * x^(2*k-1) / (1 - x^(3*k-2)).
2
1, 1, 3, 1, 4, 1, 7, 1, 6, 1, 9, 4, 8, 1, 11, 1, 14, 1, 16, 1, 12, 6, 15, 1, 14, 4, 27, 1, 16, 1, 19, 8, 21, 1, 26, 1, 32, 1, 23, 4, 22, 10, 31, 1, 24, 1, 44, 6, 26, 1, 36, 12, 28, 4, 31, 1, 46, 1, 47, 1, 40, 14, 35, 1, 34, 1, 64, 4, 36, 8, 39, 16, 38, 6, 60, 1, 60, 1, 43, 1, 50, 21, 56, 1, 44, 1, 74, 1, 56, 1
OFFSET
1,3
LINKS
FORMULA
a(n) = (1/3) * Sum_{d | 3*n-1, d==1 (mod 3)} (d+2).
G.f.: Sum_{k>0} x^k / (1 - x^(3*k-1))^2.
MATHEMATICA
a[n_] := DivisorSum[3*n - 1, # + 2 &, Mod[#, 3] == 1 &]/3; Array[a, 100] (* Amiram Eldar, Jul 05 2023 *)
PROG
(PARI) a(n) = sumdiv(3*n-1, d, (d%3==1)*(d+2))/3;
CROSSREFS
Sequence in context: A180251 A094119 A210622 * A335113 A295276 A301856
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Jul 04 2023
STATUS
approved