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

A363030
Expansion of Sum_{k>0} k * x^k / (1 - x^(5*k-3)).
1
1, 2, 4, 4, 6, 6, 8, 8, 12, 10, 12, 12, 14, 14, 19, 18, 18, 18, 20, 20, 26, 22, 26, 24, 26, 26, 36, 28, 30, 32, 32, 32, 40, 34, 36, 36, 40, 42, 50, 40, 42, 42, 44, 46, 54, 46, 48, 48, 55, 50, 66, 52, 54, 54, 60, 56, 68, 60, 60, 66, 62, 62, 78, 64, 68, 66, 68, 68, 82, 70, 84, 78, 74, 74, 92, 76, 78
OFFSET
1,2
FORMULA
a(n) = (1/5) * Sum_{d | 5*n-3, d==2 (mod 5)} (d+3).
G.f.: Sum_{k>0} x^(2*k-1) / (1 - x^(5*k-4))^2.
MATHEMATICA
a[n_] := DivisorSum[5*n - 3, # + 3 &, Mod[#, 5] == 2 &]/5; Array[a, 100] (* Amiram Eldar, Jul 06 2023 *)
PROG
(PARI) a(n) = sumdiv(5*n-3, d, (d%5==2)*(d+3))/5;
CROSSREFS
Sequence in context: A210466 A085914 A211390 * A014684 A113638 A187323
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Jul 06 2023
STATUS
approved