|
| |
|
|
A123520
|
|
Number of vertical dominoes in all possible tilings of a 2n X 3 grid by dominoes.
|
|
1
| |
|
|
4, 28, 152, 744, 3436, 15284, 66224, 281424, 1178196, 4874444, 19973192, 81189688, 327817404, 1316035940, 5257118560, 20909651104, 82849544868, 327163551612, 1288036695544, 5057236343176, 19807689093644, 77408388584724
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 1,1
|
|
|
COMMENTS
| a(n)=Sum(k*A123519(n,k),k=0..n).
|
|
|
FORMULA
| a(n)=Sum(2^(k+1)*k*binom(n+k,2k), k=0..n). G.f.=4z(1-z)/(1-4z+z^2)^2.
|
|
|
EXAMPLE
| a(1)=4 because a 2 X 3 grid can be tiled in 3 ways with dominoes: 3 horizontal dominoes, 1 horizontal domino above two adjacent vertical dominoes and 1 horizontal domino below two adjacent vertical dominoes; these have altogether 4 vertical dominoes.
|
|
|
MAPLE
| a:=n->sum(k*2^(k+1)*binomial(n+k, 2*k), k=0..n): seq(a(n), n=1..24);
|
|
|
CROSSREFS
| Cf. A001835, A123519.
Sequence in context: A043013 A145544 A006302 * A012847 A128721 A053524
Adjacent sequences: A123517 A123518 A123519 * A123521 A123522 A123523
|
|
|
KEYWORD
| nonn
|
|
|
AUTHOR
| Emeric Deutsch (deutsch(AT)duke.poly.edu), Oct 16 2006
|
| |
|
|