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!)
A061317 Split positive integers into extending even groups and sum: 1+2, 3+4+5+6, 7+8+9+10+11+12, 13+14+15+16+17+18+19+20, ... 7
0, 3, 18, 57, 132, 255, 438, 693, 1032, 1467, 2010, 2673, 3468, 4407, 5502, 6765, 8208, 9843, 11682, 13737, 16020, 18543, 21318, 24357, 27672, 31275, 35178, 39393, 43932, 48807, 54030, 59613, 65568, 71907, 78642, 85785, 93348, 101343, 109782 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
5*a(n+1) is the sum of the products of the 10 distinct combinations of three consecutive numbers starting with n (using 1,2,3 the 10 combinations are 111 112 113 122 123 133 222 223 233 333; 1*1*1 + 1*1*2 + 1*1*3 + 1*2*2 + 1*2*3 + 1*3*3 + 2*2*2 + 2*2*3 + 2*3*3 + 3*3*3 = 90 = 5*a(2)). - J. M. Bergot, Mar 28 2014 [expanded by Jon E. Schoenfield, Feb 22 2015]
LINKS
FORMULA
a(n) = 2*n^3 + n.
a(n) = A000217(A002378(n)) - A000217(A002378(n-1)).
a(n) = 3 * A005900(n).
a(n) = A001477(n) * A058331(n).
a(n) = A000578(n) + A034262(n).
G.f.: 3*x*(1+x)^2/(x-1)^4.
EXAMPLE
1+2 = 3; 3+4+5+6 = 18; 7+8+9+10+11+12 = 57; 13+14+15+16+17+18+19+20 = 132.
MAPLE
A061317:=n->2*n^3+n; seq(A061317(n), n=0..100); # Wesley Ivan Hurt, Mar 20 2014
MATHEMATICA
Table[2n^3+n, {n, 0, 5!}] (* Vladimir Joseph Stephan Orlovsky, Dec 04 2010 *)
LinearRecurrence[{4, -6, 4, -1}, {0, 3, 18, 57}, 40] (* Harvey P. Dale, Aug 23 2015 *)
With[{nn=40}, Total/@TakeList[Range[nn+nn^2], 2Range[0, nn]]] (* Requires Mathematica version 11 or later *) (* Harvey P. Dale, Mar 10 2018 *)
PROG
(PARI) { for (n=0, 1000, write("b061317.txt", n, " ", 2*n^3 + n) ) } \\ Harry J. Smith, Jul 21 2009
CROSSREFS
Sequence in context: A130505 A222204 A027289 * A190313 A139362 A012763
KEYWORD
nonn,easy
AUTHOR
Henry Bottomley, Feb 13 2002
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 16 16:26 EDT 2024. Contains 372554 sequences. (Running on oeis4.)