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!)
A008752 Expansion of (1+x^9)/((1-x)*(1-x^2)*(1-x^3)). 1
1, 1, 2, 3, 4, 5, 7, 8, 10, 13, 15, 18, 22, 25, 29, 34, 38, 43, 49, 54, 60, 67, 73, 80, 88, 95, 103, 112, 120, 129, 139, 148, 158, 169, 179, 190, 202, 213, 225, 238, 250, 263, 277, 290, 304, 319, 333, 348 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
MATHEMATICA
CoefficientList[Series[(1+x^9)/((1-x)*(1-x^2)*(1-x^3)), {x, 0, 50}], x] (* G. C. Greubel, Aug 04 2019 *)
LinearRecurrence[{2, -1, 1, -2, 1}, {1, 1, 2, 3, 4, 5, 7, 8, 10}, 50] (* Harvey P. Dale, Oct 24 2020 *)
PROG
(PARI) my(x='x+O('x^50)); Vec((1+x^9)/((1-x)*(1-x^2)*(1-x^3))) \\ G. C. Greubel, Aug 04 2019
(Magma) R<x>:=PowerSeriesRing(Integers(), 50); Coefficients(R!( (1+x^9)/((1-x)*(1-x^2)*(1-x^3)) )); // G. C. Greubel, Aug 04 2019
(Sage) ((1+x^9)/((1-x)*(1-x^2)*(1-x^3))).series(x, 50).coefficients(x, sparse=False) # G. C. Greubel, Aug 04 2019
(GAP) a:=[1, 1, 2, 3, 4];; for n in [6..50] do a[n]:=2*a[n-1]-a[n-2]+a[n-3] -2*a[n-4]+a[n-5]; od; a; # G. C. Greubel, Aug 04 2019
CROSSREFS
Sequence in context: A008753 A029004 A332728 * A029003 A339279 A034296
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 April 24 19:39 EDT 2024. Contains 371963 sequences. (Running on oeis4.)