[go: up one dir, main page]

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

A363053
Sum of divisors of 5*n-4 of form 5*k+3.
4
0, 3, 0, 8, 3, 13, 0, 21, 0, 23, 3, 36, 0, 36, 0, 38, 3, 43, 13, 59, 0, 53, 3, 58, 0, 84, 0, 76, 3, 73, 0, 94, 23, 83, 3, 96, 0, 96, 0, 126, 3, 103, 0, 137, 13, 113, 36, 118, 0, 126, 0, 136, 3, 171, 0, 164, 0, 156, 3, 156, 43, 174, 0, 158, 3, 163, 0, 255, 0, 173, 16, 178, 0, 186, 53, 196, 3, 193, 23, 252
OFFSET
1,2
FORMULA
a(n) = A284281(5*n-4).
G.f.: Sum_{k>0} (5*k-2) * x^(2*k) / (1 - x^(5*k-2)).
MATHEMATICA
a[n_] := DivisorSum[5*n - 4, # &, Mod[#, 5] == 3 &]; Array[a, 100] (* Amiram Eldar, Jul 06 2023 *)
PROG
(PARI) a(n) = sumdiv(5*n-4, d, (d%5==3)*d);
CROSSREFS
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Jul 06 2023
STATUS
approved