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!)
A177041 Sum(round(k^2/n),k=1..n). 3
1, 3, 4, 7, 11, 16, 20, 26, 31, 39, 44, 53, 63, 74, 82, 94, 105, 119, 128, 141, 157, 174, 188, 204, 221, 239, 254, 275, 295, 318, 336, 360, 377, 403, 422, 447, 475, 502, 526, 554, 581, 611, 636, 665, 697, 732, 760, 794, 825, 861 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
The round function, also called the nearest integer function, is defined here by round(x)=floor(x+1/2).
LINKS
Mircea Merca, Inequalities and Identities Involving Sums of Integer Functions J. Integer Sequences, Vol. 14 (2011), Article 11.9.1.
MAPLE
A177041 := proc(n)
add( round(j^2/n), j=1..n) ;
end proc:
MATHEMATICA
Table[Sum[Floor[k^2/n + 1/2], {k, n}], {n, 50}]
CROSSREFS
Cf. A014817.
Sequence in context: A027022 A120365 A166375 * A357680 A060962 A069950
KEYWORD
nonn,easy
AUTHOR
Mircea Merca, Dec 09 2010
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 15 22:47 EDT 2024. Contains 372549 sequences. (Running on oeis4.)