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.

Showing 1-2 of 2 results.

A192096 Maximum number of tatami tilings of any m X m square region with exactly n horizontal dimers and m monomers.

Original entry on oeis.org

2, 4, 6, 12, 18, 28, 44, 64, 92, 132, 186, 256, 352, 476, 638, 852, 1124, 1472, 1920, 2484, 3196, 4096, 5216, 6612, 8350, 10496, 13140, 16396, 20380, 25244, 31178, 38380, 47104, 57660, 70380, 85684, 104068, 126080, 152396, 183808, 221208, 265664, 318432
Offset: 0

Views

Author

Frank Ruskey and Yuji Yamauchi (eugene.uti(AT)gmail.com), Jul 15 2011

Keywords

Comments

A tatami tiling consists of dimers (1 X 2) and monomers (1 X 1) where no four meet at a point.

Examples

			a(0) = 2 because exactly 2 tilings are possible for 0 horizontal dimers and any m >= 2.  For example, with m = 3:
    _ _ _      _ _ _
   |_| |_|    | |_| |
   | |_| |    |_| |_|
   |_|_|_|    |_|_|_|
		

Crossrefs

Programs

  • Maple
    gf:= n-> 2 * mul((1 + x^k)^2, k=1..n):
    a:= n-> coeff(series(gf(n), x, n+1), x, n):
    seq(a(n), n=0..60);  # Alois P. Heinz, Jul 15 2011

Formula

G.f.: 2 * Product_{k>0} (1 + x^k)^2.
a(n) = 2 * A022567(n).

A192097 Number of tatami tilings of an n X n square region with n monomers and floor(n * (n - 1) / 4) horizontal dimers.

Original entry on oeis.org

1, 1, 2, 4, 8, 8, 16, 28, 40, 80, 144, 252, 456, 840
Offset: 0

Views

Author

Frank Ruskey and Yuji Yamauchi (eugene.uti(AT)gmail.com), Jul 15 2011

Keywords

Comments

A tatami tiling consists of dimers (1 X 2) and monomers (1 X 1) where no four meet at a point.
There are at most n * (n - 1) / 2 horizontal dimers in any tiling of an n X n square with n monomers.
If there are floor(n * (n - 1) / 4) horizontal dimers, the numbers of horizontal dimers and vertical dimers differ by at most one.

Crossrefs

Cf. A192095.
Showing 1-2 of 2 results.