A099944 Number of 3 X n binary matrices avoiding simultaneously the right angled numbered polyomino patterns (ranpp) (00;1) and (11;0).
76, 164, 340, 692, 1396, 2804, 5620, 11252, 22516, 45044, 90100, 180212, 360436, 720884, 1441780, 2883572, 5767156, 11534324, 23068660, 46137332, 92274676, 184549364, 369098740, 738197492, 1476394996, 2952790004, 5905580020
Offset: 3
Links
- S. Kitaev, On multi-avoidance of right angled numbered polyomino patterns, Integers: Electronic Journal of Combinatorial Number Theory 4 (2004), A21, 20pp.
- Index entries for linear recurrences with constant coefficients, signature (3,-2).
Crossrefs
Cf. A000105.
Programs
-
Mathematica
LinearRecurrence[{3,-2},{76,164},30] (* Harvey P. Dale, Oct 22 2017 *)
-
PARI
vector(50, n, i=n+2; 11*2^i - 12) \\ Michel Marcus, Dec 01 2014
Formula
a(n) = 11*2^n - 12.
From Chai Wah Wu, Jun 06 2016: (Start)
a(n) = 3*a(n-1) - 2*a(n-2) for n > 4.
G.f.: 4*x^3*(19 - 16*x)/((1 - x)*(1 - 2*x)). (End)
Comments