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!)
A008823 Expansion of (1+2*x^3+x^5)/((1-x)^2*(1-x^5)). 4
1, 2, 3, 6, 9, 14, 19, 24, 31, 38, 47, 56, 65, 76, 87, 100, 113, 126, 141, 156, 173, 190, 207, 226, 245, 266, 287, 308, 331, 354, 379, 404, 429, 456, 483, 512, 541, 570, 601, 632, 665, 698, 731, 766, 801, 838, 875 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = floor(n*(2*n+3)/5) + 1. - Tani Akinari, Jun 15 2014
a(0)=1, a(1)=2, a(2)=3, a(3)=6, a(4)=9, a(5)=14, a(6)=19, a(n)= 2*a(n-1) - a(n-2) + a(n-5) - 2*a(n-6) + a(n-7). - Harvey P. Dale, Jan 02 2016
MAPLE
seq(coeff(series((1+2*x^3+x^5)/((1-x)^2*(1-x^5)), x, n+1), x, n), n = 0..50); # G. C. Greubel, Sep 13 2019
MATHEMATICA
CoefficientList[Series[(1+2x^3+x^5)/(1-x)^2/(1-x^5), {x, 0, 50}], x] (* or *) LinearRecurrence[{2, -1, 0, 0, 1, -2, 1}, {1, 2, 3, 6, 9, 14, 19}, 50] (* Harvey P. Dale, Jan 02 2016 *)
PROG
(PARI) Vec((1+2*x^3+x^5)/(1-x)^2/(1-x^5)+ O(x^50)) \\ Michel Marcus, Jun 15 2014
(Magma) R<x>:=PowerSeriesRing(Integers(), 50); Coefficients(R!( (1+2*x^3+x^5)/((1-x)^2*(1-x^5)) )); // G. C. Greubel, Sep 13 2019
(Sage)
def A008823_list(prec):
P.<x> = PowerSeriesRing(ZZ, prec)
return P((1+2*x^3+x^5)/((1-x)^2*(1-x^5))).list()
A008823_list(50) # G. C. Greubel, Sep 13 2019
(GAP) a:=[1, 2, 3, 6, 9, 14, 19];; for n in [8..50] do a[n]:=2*a[n-1]-a[n-2] +a[n-5]-2*a[n-6]+a[n-7]; od; a; # G. C. Greubel, Sep 13 2019
CROSSREFS
Expansions of the form (1 +2*x^(m+1) +x^(2*m+1))/((1-x)^2*(1-x^(2*m+1))): A008822 (m=1), this sequence (m=2), A008824 (m=3), A008825 (m=4).
Sequence in context: A023559 A191184 A299100 * A127719 A074150 A261243
KEYWORD
nonn
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 May 31 19:33 EDT 2024. Contains 373003 sequences. (Running on oeis4.)