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

A284280
a(n) = Sum_{d|n, d == 2 (mod 5)} d.
12
0, 2, 0, 2, 0, 2, 7, 2, 0, 2, 0, 14, 0, 9, 0, 2, 17, 2, 0, 2, 7, 24, 0, 14, 0, 2, 27, 9, 0, 2, 0, 34, 0, 19, 7, 14, 37, 2, 0, 2, 0, 51, 0, 24, 0, 2, 47, 14, 7, 2, 17, 54, 0, 29, 0, 9, 57, 2, 0, 14, 0, 64, 7, 34, 0, 24, 67, 19, 0, 9, 0, 86, 0, 39, 0, 2, 84, 2, 0, 2
OFFSET
1,2
LINKS
FORMULA
G.f.: Sum_{k>=0} (5*k + 2)*x^(5*k+2)/(1 - x^(5*k+2)). - Ilya Gutkovskiy, Mar 25 2017
Sum_{k=1..n} a(k) = c * n^2 + O(n*log(n)), where c = Pi^2/60 = 0.164493... (A013661 / 10). - Amiram Eldar, Nov 26 2023
MATHEMATICA
Table[Sum[If[Mod[d, 5] == 2, d, 0], {d, Divisors[n]}], {n, 80}] (* Indranil Ghosh, Mar 24 2017 *)
PROG
(PARI) for(n=1, 80, print1(sumdiv(n, d, if(Mod(d, 5)==2, d, 0)), ", ")) \\ Indranil Ghosh, Mar 24 2017
(Python)
from sympy import divisors
def a(n): return sum([d for d in divisors(n) if d%5==2]) # Indranil Ghosh, Mar 24 2017
CROSSREFS
Cf. Sum_{d|n, d=k mod 5} d: A284097 (k=1), this sequence (k=2), A284281 (k=3), A284103 (k=4).
Sequence in context: A159006 A291968 A226171 * A278520 A239246 A171700
KEYWORD
nonn,easy
AUTHOR
Seiichi Manyama, Mar 24 2017
STATUS
approved