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!)
A059682 Triangle T(n,k) giving number of 2 X k polyominoes with n cells (n >= 2, 1<=k<=n-1). 1

%I #17 May 12 2019 09:00:56

%S 1,0,1,0,1,3,0,0,2,3,0,0,1,6,5,0,0,0,2,11,5,0,0,0,1,10,19,7,0,0,0,0,3,

%T 22,28,7,0,0,0,0,1,15,52,40,9,0,0,0,0,0,3,45,90,53,9,0,0,0,0,0,1,21,

%U 119,158,69,11,0,0,0,0,0,0,4,73,257,238,86,11,0,0,0,0,0,0,1,28,237,505,360,106,13

%N Triangle T(n,k) giving number of 2 X k polyominoes with n cells (n >= 2, 1<=k<=n-1).

%H R. C. Read, <a href="http://cms.math.ca/cjm/v14/cjm1962v14.0001-0020.pdf">Contributions to the cell growth problem</a>, Canad. J. Math., 14 (1962), 1-20. See Eq. (8.5) for g.f..

%F G.f.: ((y^9-y^8)*x^6+y^8*x^5+(y^7-2*y^6+y^5)*x^4+(y^6-y^3)*x^3+(-y^4+y^2)*x^2+(-y^2-y)*x+1)*y^2*x/((y^3*x^2+(y^2+y)*x-1)*(y*x-1)*(y^2*x-1)*(y^6*x^4+(y^4+y^2)*x^2-1)). - _Vladeta Jovovic_, Apr 02 2002

%e Triangle starts:

%e 1;

%e 0,1;

%e 0,1,3;

%e 0,0,2,3;

%e ...

%t rows = 13; gf = ((y^9 - y^8)*x^6 + y^8*x^5 + (y^7 - 2*y^6 + y^5)*x^4 + (y^6 - y^3)*x^3 + (-y^4 + y^2)*x^2 + (-y^2 - y)*x + 1)*y^2*x/((y^3*x^2 + (y^2 + y)*x - 1)*(y*x - 1)*(y^2*x - 1)*(y^6*x^4 + (y^4 + y^2)*x^2 - 1));

%t coes = CoefficientList[#, x]& /@ CoefficientList[gf + O[y]^(rows+2), y];

%t T[n_, k_] := coes[[n+1, k+1]];

%t Table[T[n, k], {n, 2, rows+1}, {k, 1, n-1}] // Flatten (* _Jean-François Alcover_, Nov 12 2017, after _Vladeta Jovovic_ *)

%Y Main diagonal gives A109613(n-2).

%Y Cf. A059683 (3xk), A059684 (4xk).

%K nonn,easy,nice,tabl

%O 2,6

%A _N. J. A. Sloane_, Feb 05 2001

%E More terms from _Vladeta Jovovic_, Apr 02 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 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)