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

A363032
Expansion of Sum_{k>0} k * x^(3*k-1) / (1 - x^(5*k-3)).
1
0, 1, 0, 1, 2, 1, 0, 4, 0, 1, 4, 3, 0, 6, 0, 1, 6, 1, 2, 11, 0, 1, 8, 1, 0, 12, 0, 5, 10, 1, 0, 15, 2, 1, 12, 6, 0, 14, 0, 3, 14, 1, 0, 25, 4, 1, 18, 1, 0, 18, 0, 8, 18, 3, 0, 23, 0, 6, 20, 9, 2, 26, 0, 1, 22, 1, 0, 38, 0, 1, 30, 1, 0, 26, 2, 11, 26, 1, 4, 36, 0, 3, 28, 19, 0, 30, 0, 1, 32, 1, 0, 47, 0
OFFSET
1,5
FORMULA
a(n) = (1/5) * Sum_{d | 5*n-4, d==2 (mod 5)} (d+3).
G.f.: Sum_{k>0} x^(2*k) / (1 - x^(5*k-2))^2.
MATHEMATICA
a[n_] := DivisorSum[5*n - 4, # + 3 &, Mod[#, 5] == 2 &]/5; Array[a, 100] (* Amiram Eldar, Jul 06 2023 *)
PROG
(PARI) a(n) = sumdiv(5*n-4, d, (d%5==2)*(d+3))/5;
CROSSREFS
Sequence in context: A300482 A191897 A088850 * A185964 A143424 A130125
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Jul 06 2023
STATUS
approved