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.

A183337 Number of n X 5 binary arrays with each 1 adjacent to exactly one 1 vertically and one 1 horizontally.

Original entry on oeis.org

1, 6, 13, 26, 72, 175, 407, 1005, 2450, 5893, 14318, 34780, 84221, 204245, 495483, 1201256, 2912843, 7064014, 17129250, 41536473, 100724269, 244248135, 592280544, 1436238121, 3482767494, 8445435610, 20479537209, 49661306333, 120424822297
Offset: 1

Views

Author

R. H. Hardin, Jan 04 2011

Keywords

Comments

Equivalent to all 1s connected only in 2 X 2 blocks.
Column 5 of A183342.

Examples

			Some solutions for 7 X 5:
  1 1 0 0 0    0 0 0 1 1    0 0 1 1 0    0 0 1 1 0
  1 1 0 0 0    0 0 0 1 1    0 0 1 1 0    0 0 1 1 0
  0 0 1 1 0    0 0 0 0 0    1 1 0 0 0    0 0 0 0 0
  0 0 1 1 0    0 0 0 0 0    1 1 0 0 0    1 1 0 1 1
  0 0 0 0 0    0 0 1 1 0    0 0 0 0 0    1 1 0 1 1
  1 1 0 0 0    0 0 1 1 0    0 0 0 1 1    0 0 0 0 0
  1 1 0 0 0    0 0 0 0 0    0 0 0 1 1    0 0 0 0 0
		

Crossrefs

Cf. A183342.

Formula

Empirical: a(n) = a(n-1) + a(n-2) + 5*a(n-3) + 2*a(n-4) + a(n-5) - a(n-7) - a(n-8).
Empirical g.f.: x*(1 + 5*x + 6*x^2 + 2*x^3 + x^4 - x^5 - 2*x^6 - x^7) / (1 - x - x^2 - 5*x^3 - 2*x^4 - x^5 + x^7 + x^8). - Colin Barker, Mar 27 2018