cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A099944 Number of 3 X n binary matrices avoiding simultaneously the right angled numbered polyomino patterns (ranpp) (00;1) and (11;0).

Original entry on oeis.org

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

Views

Author

Sergey Kitaev, Nov 12 2004

Keywords

Comments

An occurrence of a ranpp (xy;z) in a matrix A=(a(i,j)) is a triple (a(i1,j1), a(i1,j2), a(i2,j1)) where i10 and n>2; for n=2 the number is (m+1)*2^m.

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)