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!)
A177100 Partial sums of round(n^2/9). 11
0, 0, 0, 1, 3, 6, 10, 15, 22, 31, 42, 55, 71, 90, 112, 137, 165, 197, 233, 273, 317, 366, 420, 479, 543, 612, 687, 768, 855, 948, 1048, 1155, 1269, 1390, 1518, 1654, 1798, 1950, 2110, 2279, 2457, 2644, 2840, 3045, 3260, 3485, 3720, 3965, 4221, 4488, 4766 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,5
COMMENTS
Partial sums of A008740(n-3). [Corrected by Gerald Hillier, Dec 24 2017]
The round function, also called the nearest integer function, is defined here by round(x)=floor(x+1/2).
There are several sequences of integers of the form round(n^2/k) for whose partial sums we can establish identities as following (only for k = 2,...,9,11,12,13,16,17,19,20, 28,29,36,44).
LINKS
Mircea Merca, Inequalities and Identities Involving Sums of Integer Functions J. Integer Sequences, Vol. 14 (2011), Article 11.9.1.
FORMULA
a(n) = round((n-1)*(n+2)*(2*n+1)/54);
a(n) = floor((n+3)*(2*n^2-3*n+6)/54);
a(n) = ceiling((n-2)*(2*n^2+7*n+11)/54);
a(n) = round((2*n^3+3*n^2-3*n)/54);
a(n) = a(n-9) + (n+1)*(n-9) + 31, n > 8.
a(n) = 3*a(n-1) - 3*a(n-2) + a(n-3) + a(n-9) - 3*a(n-10) + 3*a(n-11) - a(n-12). - R. J. Mathar, Mar 11 2012
G.f.: x^3*(x+1)*(x^4-x^3+x^2-x+1)/((x-1)^4*(x^2+x+1)*(x^6+x^3+1)). - Colin Barker, Oct 10 2012
EXAMPLE
a(9) = 0+0+0+1+2+3+4+5+7+9 = 31.
MAPLE
seq(round((2*n^3+3*n^2-3*n)/54), n=0..50)
MATHEMATICA
Accumulate[Round[Range[0, 80]^2/9]] (* Harvey P. Dale, Apr 06 2017 *)
PROG
(PARI) a(n)=(n+3)*(2*n^2-3*n+6)\54 \\ Charles R Greathouse IV, Sep 28 2015
CROSSREFS
Cf. A008740.
Sequence in context: A011914 A173645 A122047 * A265071 A330910 A226239
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 April 17 22:23 EDT 2024. Contains 371767 sequences. (Running on oeis4.)