The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A284099 a(n) = Sum_{d|n, d == 1 (mod 7)} d. 15
1, 1, 1, 1, 1, 1, 1, 9, 1, 1, 1, 1, 1, 1, 16, 9, 1, 1, 1, 1, 1, 23, 1, 9, 1, 1, 1, 1, 30, 16, 1, 9, 1, 1, 1, 37, 1, 1, 1, 9, 1, 1, 44, 23, 16, 1, 1, 9, 1, 51, 1, 1, 1, 1, 1, 9, 58, 30, 1, 16, 1, 1, 1, 73, 1, 23, 1, 1, 1, 1, 72, 45, 1, 1, 16, 1, 1, 79, 1, 9, 1, 1 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,8
LINKS
FORMULA
G.f.: Sum_{k>=0} (7*k + 1)*x^(7*k+1)/(1 - x^(7*k+1)). - Ilya Gutkovskiy, Mar 21 2017
G.f.: Sum_{n >= 1} x^n*(1 + 6*x^(7*n))/(1 - x^(7*n))^2. - Peter Bala, Dec 19 2021
Sum_{k=1..n} a(k) = c * n^2 + O(n*log(n)), where c = Pi^2/84 = 0.117495... . - Amiram Eldar, Nov 26 2023
MATHEMATICA
Table[Sum[If[Mod[d, 7] == 1, d, 0], {d, Divisors[n]}], {n, 82}] (* Indranil Ghosh, Mar 21 2017 *)
Table[DivisorSum[n, #&, Mod[#, 7]==1&], {n, 90}] (* Harvey P. Dale, Aug 08 2021 *)
PROG
(PARI) for(n=1, 82, print1(sumdiv(n, d, if(Mod(d, 7)==1, d, 0)), ", ")) \\ Indranil Ghosh, Mar 21 2017
(Python)
from sympy import divisors
def a(n): return sum([d for d in divisors(n) if d%7==1]) # Indranil Ghosh, Mar 21 2017
CROSSREFS
Cf. A109703.
Cf. Sum_{d|n, d == 1 (mod k)} d: A000593 (k=2), A078181 (k=3), A050449 (k=4), A284097 (k=5), A284098 (k=6), this sequence (k=7), A284100 (k=8).
Cf. Sum_{d|n, d == k (mod 7)} d: this sequence (k=1), A284443 (k=2), A284444 (k=3), A284445 (k=4), A284446 (k=5), A284105 (k=6).
Sequence in context: A370240 A113061 A366904 * A176410 A087966 A087968
KEYWORD
nonn,easy
AUTHOR
Seiichi Manyama, Mar 20 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 May 19 23:42 EDT 2024. Contains 372703 sequences. (Running on oeis4.)