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!)
A026037 a(n) = dot_product(1,2,...,n)*(3,4,...,n,1,2). 4
11, 22, 40, 67, 105, 156, 222, 305, 407, 530, 676, 847, 1045, 1272, 1530, 1821, 2147, 2510, 2912, 3355, 3841, 4372, 4950, 5577, 6255, 6986, 7772, 8615, 9517, 10480, 11506, 12597, 13755, 14982, 16280, 17651, 19097, 20620, 22222, 23905, 25671, 27522, 29460, 31487, 33605, 35816, 38122, 40525, 43027 (list; graph; refs; listen; history; text; internal format)
OFFSET
3,1
LINKS
FORMULA
n(2n^2 - 3n + 13)/6. - Ralf Stephan, Apr 30 2004
G.f.: -x^3*(-11 + 22*x - 18*x^2 + 5*x^3) / (x - 1)^4 . - R. J. Mathar, Apr 17 2011
a(n) = 4*a(n-1) - 6*a(n-2) + 4*a(n-3) - a(n-4). - Vincenzo Librandi, Jun 20 2012
MATHEMATICA
s=0; lst={}; Do[s+=n^2+2; If[s>10, AppendTo[lst, s]], {n, 0, 6!, 1}]; lst (* Vladimir Joseph Stephan Orlovsky, Nov 07 2008 *)
Table[n (2n^2-3n+13)/6, {n, 3, 60}] (* Harvey P. Dale, Apr 22 2011 *)
LinearRecurrence[{4, -6, 4, -1}, {11, 22, 40, 67}, 50] (* Vincenzo Librandi, Jun 20 2012 *)
PROG
(Magma) I:=[11, 22, 40, 67]; [n le 4 select I[n] else 4*Self(n-1)-6*Self(n-2)+4*Self(n-3)-Self(n-4): n in [1..50]]; // Vincenzo Librandi, Jun 20 2012
CROSSREFS
Column 2 of triangle A094414.
Sequence in context: A084025 A061157 A144378 * A266088 A122613 A115768
KEYWORD
nonn,easy
AUTHOR
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 29 07:13 EDT 2024. Contains 372098 sequences. (Running on oeis4.)