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!)
A177176 Partial sums of round(n^2/13). 2
0, 0, 0, 1, 2, 4, 7, 11, 16, 22, 30, 39, 50, 63, 78, 95, 115, 137, 162, 190, 221, 255, 292, 333, 377, 425, 477, 533, 593, 658, 727, 801, 880, 964, 1053, 1147, 1247, 1352, 1463, 1580, 1703, 1832, 1968, 2110, 2259, 2415, 2578, 2748, 2925, 3110, 3302 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,5
COMMENTS
The round 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.
FORMULA
a(n) = round(n*(n+1)*(2*n+1)/78).
a(n) = floor((n+3)*(2*n^2 - 3*n + 10)/78).
a(n) = ceiling((n-2)*(2*n^2 + 7*n + 15)/78).
a(n) = a(n-13) + (n+1)*(n-13) + 63, n > 12.
a(n) = 3*a(n-1) - 3*a(n-2) + a(n-3) + a(n-13) - 3*a(n-14) + 3*a(n-15) - a(n-16) with g.f. x^3*(1+x)*(x^2 - x + 1)*(x^6 - x^5 + x^4 - x^3 + x^2 - x + 1) / ( (x^12 + x^11 + x^10 + x^9 + x^8 + x^7 + x^6 + x^5 + x^4 + x^3 + x^2 + x + 1)*(x-1)^4 ). - R. J. Mathar, Dec 13 2010
EXAMPLE
a(13) = 0 + 0 + 0 + 1 + 1 + 2 + 3 + 4 + 5 + 6 + 8 + 9 + 11 + 13 = 63.
MAPLE
seq(round(n*(n+1)*(2*n+1)/78), n=0..50)
PROG
(PARI) s=0; vector(90, n, s+=n^2\13)
(Magma) [Round(n*(n+1)*(2*n+1)/78): n in [0..60]]; // Vincenzo Librandi, Jun 23 2011
CROSSREFS
Sequence in context: A309838 A334251 A175776 * A005689 A212365 A131075
KEYWORD
nonn,easy
AUTHOR
Mircea Merca, Dec 10 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 June 12 04:45 EDT 2024. Contains 373321 sequences. (Running on oeis4.)