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!)
A218444 a(n) = Sum_{k>=0} floor(n/(5*k + 1)). 3
0, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 13, 15, 16, 17, 18, 20, 21, 23, 24, 25, 27, 29, 30, 32, 33, 35, 36, 37, 38, 40, 42, 44, 46, 47, 48, 51, 52, 53, 54, 55, 57, 60, 61, 63, 64, 66, 67, 70, 71, 72, 74, 76, 77, 79, 81, 83, 84, 85, 86, 88, 90, 92, 94, 96, 97, 101, 102, 103, 104, 105 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Partial sums of A001876.
LINKS
FORMULA
a(n) = Sum_{k>=0} floor(n/(5*k + 1)).
MATHEMATICA
a[n_] := Sum[ Floor[n/(5*k+1)], {k, 0, Ceiling[n/5]}]; Table[a[n], {n, 0, 70}] (* Jean-François Alcover, Feb 22 2013 *)
PROG
(PARI) a(n)=sum(k=0, n, (n\(5*k+1)))
(Maxima) A218444[n]:=sum(floor(n/(5*k+1)), k, 0, n)$
makelist(A218444[n], n, 0, 80); /* Martin Ettl, Oct 29 2012 */
CROSSREFS
Sequence in context: A055019 A261466 A172152 * A325118 A014122 A324759
KEYWORD
nonn
AUTHOR
Benoit Cloitre, Oct 28 2012
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 23 18:16 EDT 2024. Contains 371916 sequences. (Running on oeis4.)