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

A363889
Sum of divisors of 3*n-2 of form 3*k+1.
5
1, 5, 8, 11, 14, 21, 20, 23, 26, 40, 32, 35, 38, 55, 44, 47, 57, 70, 56, 59, 62, 85, 68, 88, 74, 100, 80, 83, 86, 115, 112, 95, 98, 140, 104, 107, 110, 168, 116, 119, 122, 160, 128, 154, 160, 175, 140, 143, 146, 190, 152, 184, 158, 231, 164, 167, 183, 220, 208, 179, 182, 235, 188
OFFSET
1,2
LINKS
FORMULA
a(n) = A078181(3*n-2).
G.f.: Sum_{k>0} (3*k-2) * x^k/(1 - x^(3*k-2)).
MATHEMATICA
a[n_] := DivisorSum[3*n - 2, # &, Mod[#, 3] == 1 &]; Array[a, 100] (* Amiram Eldar, Jun 26 2023 *)
PROG
(PARI) a(n) = sumdiv(3*n-2, d, (d%3==1)*d);
CROSSREFS
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Jun 26 2023
STATUS
approved