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!)
A173652 Expansion of g.f.: x^3*(1 + 4*x - x^2 - 6*x^3 + x^4)/(1 - 9*x^2 - 3*x^3 + 17*x^4 + 8*x^5 - 6*x^6 - 7*x^7 + x^8 - x^9). 1
0, 0, 0, 1, 4, 8, 33, 68, 245, 549, 1815, 4331, 13524, 33766, 101383, 261293, 763745, 2011959, 5774140, 15440569, 43764595, 118231475, 332290914, 903952326, 2526016085, 6904206021, 19218113777, 52696460176, 146294791786, 402018135352, 1114070627578 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,5
LINKS
MATHEMATICA
M = {{0, 1, 0, 1, 0, 0, 0, 0, 0},
{0, 0, 1, 0, 1, 0, 0, 0, 0},
{1, 1, 0, 0, 0, 1, 0, 0, 0},
{1, 0, 0, 0, 0, 1, 1, 0, 0},
{0, 1, 0, 1, 0, 1, 0, 1, 0},
{0, 0, 1, 0, 1, 0, 0, 0, 1},
{0, 0, 0, 1, 0, 0, 0, 1, 0},
{0, 0, 0, 0, 1, 0, 0, 0, 1},
{0, 0, 0, 0, 0, 1, 1, 1, 0}};
v[0]= {0, 0, 0, 0, 0, 0, 0, 0, 1};
v[n_] := v[n] = M.v[n - 1]
Table[v[n][[1]], {n, 0, 30}] (* or *)
LinearRecurrence[{0, 9, 3, -17, -8, 6, 7, -1, 1}, {0, 0, 0, 1, 4, 8, 33, 68, 245}, 31] (* Georg Fischer, May 03 2019 *)
CoefficientList[Series[x^3*(1+4*x-x^2-6*x^3+x^4)/(1-9*x^2-3*x^3+17*x^4 + 8*x^5-6*x^6-7*x^7+x^8-x^9), {x, 0, 30}], x] (* G. C. Greubel, May 03 2019 *)
PROG
(PARI) my(x='x+O('x^30)); concat([0, 0, 0], Vec(x^3*(1+4*x-x^2-6*x^3+x^4)/( 1-9*x^2-3*x^3+17*x^4+8*x^5-6*x^6-7*x^7+x^8-x^9))) \\ G. C. Greubel, May 03 2019
(Magma) R<x>:=PowerSeriesRing(Integers(), 30); [0, 0, 0] cat Coefficients(R!( x^3*(1+4*x-x^2-6*x^3+x^4)/( 1-9*x^2-3*x^3+17*x^4+8*x^5 -6*x^6-7*x^7+x^8-x^9) )); // G. C. Greubel, May 03 2019
(Sage) (x^3*(1+4*x-x^2-6*x^3+x^4)/( 1-9*x^2-3*x^3 +17*x^4+8*x^5-6*x^6 -7*x^7+x^8-x^9)).series(x, 30).coefficients(x, sparse=False) # G. C. Greubel, May 03 2019
CROSSREFS
Cf. A000931.
Sequence in context: A032467 A009265 A173326 * A149095 A149096 A149097
KEYWORD
nonn,easy,less
AUTHOR
Roger L. Bagula, Nov 24 2010
EXTENSIONS
Definition corrected by Georg Fischer, May 03 2019
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 25 11:39 EDT 2024. Contains 371969 sequences. (Running on oeis4.)