login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
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 (list; graph; refs; listen; history; text; internal format)
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

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 00:30 EDT 2024. Contains 371917 sequences. (Running on oeis4.)