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!)
A071101 Expansion of (5 + 6*x + 3*x^2 - 2*x^3) / (1 - 2*x - 2*x^2 - 2*x^3 + x^4) in powers of x. 8

%I #40 Sep 08 2022 08:45:06

%S 5,16,45,130,377,1088,3145,9090,26269,75920,219413,634114,1832625,

%T 5296384,15306833,44237570,127848949,369490320,1067846845,3086134658,

%U 8919094697,25776662080,74495936025,215297250946,622220603405,1798250918672,5197041610021

%N Expansion of (5 + 6*x + 3*x^2 - 2*x^3) / (1 - 2*x - 2*x^2 - 2*x^3 + x^4) in powers of x.

%C Number of tilings of the 2-mod-4 pillow of order n is a perfect square times a(n). [Propp, 1999, p. 272]

%D J. Propp, Enumeration of matchings: problems and progress, pp. 255-291 in L. J. Billera et al., eds, New Perspectives in Algebraic Combinatorics, Cambridge, 1999 (see Problem 12).

%H A.H.M. Smeets, <a href="/A071101/b071101.txt">Table of n, a(n) for n = 0..2169</a>

%H J. Propp, <a href="http://jamespropp.org/update.pdf">Updated article</a>

%H J. Propp, Enumeration of matchings: problems and progress, in L. J. Billera et al. (eds.), <a href="http://www.msri.org/publications/books/Book38/contents.html">New Perspectives in Algebraic Combinatorics</a>

%H <a href="/index/Rec#order_04">Index entries for linear recurrences with constant coefficients</a>, signature (2,2,2,-1).

%F G.f.: (5 + 6*x + 3*x^2 - 2*x^3) / (1 - 2*x - 2*x^2 - 2*x^3 + x^4).

%F a(-n) = a(-6 + n). a(-1) = 2, a(-2) = 1, a(-3) = 0. a(n) = 2*a(n-1) + 2*a(n-2) + 2*a(n-3) - a(n-4). - _Michael Somos_, Dec 15 2011

%F A112835(2*n + 3) = a(n).

%F Lim_{n -> inf} a(n)/a(n-1) = A318605. - _A.H.M. Smeets_, Sep 12 2018

%e G.f. = 5 + 16*x + 45*x^2 + 130*x^3 + 377*x^4 + 1088*x^5 + 3145*x^6 + 9090*x^7 + ...

%p seq(coeff(series((5+6*x+3*x^2-2*x^3)/(1-2*x-2*x^2-2*x^3+x^4),x,n+1), x, n), n = 0 .. 30); # _Muniru A Asiru_, Sep 12 2018

%t Table[Abs[Fibonacci[n+3, 1+I]]^2, {n,0,30}] (* _Vladimir Reshetnikov_, Oct 05 2016 *)

%t CoefficientList[Series[(5+6*x+3*x^2-2*x^3)/(1-2*x-2*x^2-2*x^3+x^4), {x, 0, 30}], x] (* _Stefano Spezia_, Sep 12 2018 *)

%o (PARI) {a(n) = my(m = abs(n+3)); polcoeff( (x - x^3) / (1 - 2*x - 2*x^2 - 2*x^3 + x^4) + x * O(x^m), m)}; /* _Michael Somos_, Dec 15 2011 */

%o (PARI) x='x+O('x^33); Vec((5+6*x+3*x^2-2*x^3)/(1-2*x-2*x^2-2*x^3+x^4)) \\ _Altug Alkan_, Sep 12 2018

%o (Python)

%o from math import log

%o a0,a1,a2,a3,n = 130,45,16,5,3

%o print(0,a3)

%o print(1,a2)

%o print(2,a1)

%o print(3,a0)

%o while log(a0)/log(10) < 1000:

%o a0,a1,a2,a3,n = 2*(a0+a1+a2)-a3,a0,a1,a2,n+1

%o print(n,a0) # _A.H.M. Smeets_, Sep 12 2018

%o (GAP) a:=[5,16,45,130];; for n in [5..30] do a[n]:=2*a[n-1]+2*a[n-2] +2*a[n-3]-a[n-4]; od; a; # _Muniru A Asiru_, Sep 12 2018

%o (Magma) R<x>:=PowerSeriesRing(Integers(), 30); Coefficients(R!( (5+6*x+3*x^2-2*x^3)/(1-2*x-2*x^2-2*x^3+x^4) )); // _G. C. Greubel_, Jul 29 2019

%o (Sage) ((5+6*x+3*x^2-2*x^3)/(1-2*x-2*x^2-2*x^3+x^4)).series(x, 30).coefficients(x, sparse=False) # _G. C. Greubel_, Jul 29 2019

%Y Cf. A112835, A138573.

%K nonn,easy

%O 0,1

%A _N. J. A. Sloane_, May 28 2002

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 14:23 EDT 2024. Contains 371960 sequences. (Running on oeis4.)