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!)
A272058 Start with all terms set to 0. Then add n to the next n+3 terms for n=0,1,2,... . 2
0, 0, 1, 3, 6, 10, 14, 20, 25, 33, 39, 49, 56, 68, 76, 90, 99, 115, 125, 143, 154, 174, 186, 208, 221, 245, 259, 285, 300, 328, 344, 374, 391, 423, 441, 475, 494, 530, 550, 588, 609, 649, 671, 713, 736, 780, 804, 850, 875, 923, 949, 999, 1026, 1078, 1106 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
G.f.: x^2*(1 + 2*x + x^2 - x^4)/((1 - x)^3*(1 + x)^2).
a(n) = a(n-1) + 2*a(n-2) - 2*a(n-3) - a(n-4) + a(n-5) for n > 6.
a(n) = (6*n^2 + 6*n - 23 + (7 - 2*n)*(-1)^n)/16 for n > 1.
a(n) = floor((n+3)/4) * floor((3*n-4)/2) + (floor((n-1)/2) mod 2) * floor((3*n-3)/4) for n > 1.
For n > 1, a(2n) = A095794(n). - Jon E. Schoenfield, Feb 19 2022
EXAMPLE
n | 0, 1, 2, 3, 4, 5, 6, 7, 8, 9,10, ...
__________________________________________
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ...
+ 0, 0, 0
+ 1, 1, 1, 1,
+ 2, 2, 2, 2, 2
+ 3, 3, 3, 3, 3, 3
+ 4, 4, 4, 4, 4, 4, 4
+ 5, 5, 5, 5, 5, 5, 5, 5
+ 6, 6, 6, 6, 6, 6, 6, 6, 6
+ 7, 7, 7, 7, 7, 7, 7, 7, 7, 7
+ 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8
+ 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9
+ ...
__________________________________________
a(n)|0, 0, 1, 3, 6,10,14,20,25,33,39, ...
MAPLE
A272058:=n->(6*n^2+6*n-23+(7-2*n)*(-1)^n)/16: 0, 0, seq(A272058(n), n=2..100);
MATHEMATICA
CoefficientList[Series[x^2*(1 + 2 x + x^2 - x^4)/((1 - x)^3*(1 + x)^2), {x, 0, 50}], x] (* or *)
LinearRecurrence[{1, 2, -2, -1, 1, 0, 0}, {0, 0, 1, 3, 6, 10, 14}, 60]
PROG
(Magma) [0, 0] cat [(6*n^2+6*n-23+(7-2*n)*(-1)^n)/16 : n in [2..100]];
CROSSREFS
Sequence in context: A079552 A334454 A236758 * A244360 A183863 A372637
KEYWORD
nonn,easy
AUTHOR
Wesley Ivan Hurt, Apr 19 2016
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 14 06:43 EDT 2024. Contains 372528 sequences. (Running on oeis4.)