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!)
A192905 Coefficient of x in the reduction by (x^2 -> x + 1) of the polynomial p(n,x) defined below at Comments. 3
0, 1, 3, 8, 25, 79, 248, 777, 2435, 7632, 23921, 74975, 234992, 736529, 2308483, 7235416, 22677769, 71078319, 222778856, 698249753, 2188505347, 6859373216, 21499148257, 67384199871, 211200478176, 661959956001, 2074763216131 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
The titular polynomial is defined by p(n,x) = (x^2)*p(n-1,x) + x*p(n-2,x), with p(0,x) = 1, p(1,x) = x. For details, see A192904.
LINKS
FORMULA
a(n) = 3*a(n-1) + a(n-3) + a(n-4).
G.f.: x*(1-x)*(1+x)/(1-3*x-x^3-x^4). - Colin Barker, Aug 31 2012
MATHEMATICA
(See A192904.)
LinearRecurrence[{3, 0, 1, 1}, {0, 1, 3, 8}, 30] (* G. C. Greubel, Jan 11 2019 *)
PROG
(PARI) my(x='x+O('x^30)); concat([0], Vec(x*(1-x^2)/(1-3*x-x^3-x^4))) \\ G. C. Greubel, Jan 11 2019
(Magma) m:=30; R<x>:=PowerSeriesRing(Integers(), m); [0] cat Coefficients(R!( x*(1-x^2)/(1-3*x-x^3-x^4) )); // G. C. Greubel, Jan 11 2019
(Sage) (x*(1-x^2)/(1-3*x-x^3-x^4)).series(x, 30).coefficients(x, sparse=False) # G. C. Greubel, Jan 11 2019
(GAP) a:=[0, 1, 3, 8];; for n in [5..30] do a[n]:=3*a[n-1]+a[n-3]+a[n-4]; od; a; # G. C. Greubel, Jan 11 2019
CROSSREFS
Sequence in context: A007563 A050383 A060404 * A192207 A289593 A101490
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Jul 12 2011
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 11:49 EDT 2024. Contains 371936 sequences. (Running on oeis4.)