login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A338531 a(n) is the number of row-convex domino towers with n bricks (rows need not be offset). 0
1, 4, 16, 61, 225, 815, 2923, 10428, 37097, 131776, 467732, 1659537, 5886945, 20880912, 74060619, 262672473, 931615218, 3304121816, 11718561425, 41561571533 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
A domino tower is a stack of bricks, where (1) the bottom row is contiguous, and (2) each brick is supported from below by at least half of a brick. Note, that in this definition of domino towers, rows need not be offset by half a brick. The number of domino towers with n bricks is given by 4^(n-1).
In this sequence we want all rows to be convex, rather than just the bottom row.
LINKS
T. M. Brown, Convex domino towers, J. of Integer Sequences, 20 (2017), p.17.
FORMULA
G.f.: G(x) := [ Sum_{l>0} z^l (z^3 T(3,l)+(2 z^2-1) T(2,l)+(2 z+1) T(1,l)) ] / (z^5 T(2,3)+(3 z-1) z^3 T(1,3)+(4 z^3-3 (z+1) z+1) T(1,2)) , where
T(i,j) := A(i)B(j)-A(j)B(i),
A(l) := Sum_{n>=0} (z^(l n+n^2+n) (-z;z)_n)/((z;z)_n)^2,
B(l) := Sum_{n>=0} (z^(l n+n^2+n) (-z;z)_n)/((z;z)_n)^2 * (l+n+Sum_{m=1,...,n} (3 z^m+1)/(1-z^(2 m))), and
(a;q)_n is the q-Pochhammer symbol
EXAMPLE
For n=2, the a(2) = 4 domino towers are:
+-------+-------+
| | |
+-------+-------+
+-------+
| |
+---+---+---+
| |
+-------+
+-------+
| |
+-------+
| |
+-------+
+-------+
| |
+---+---+---+
| |
+-------+
For n=4, the 4^(n-1)-a(n)=64-61=3 domino towers, which have non-convex rows are:
+-------+ +-------+
| | | |
+-------+---+---+---+
| | |
+-------+-------+
+-------+ +-------+
| | | |
+---+---+---+-------+
| | |
+-------+-------+
+-------+ +-------+
| | | |
+---+---+---+---+---+---+
| | |
+-------+-------+
MATHEMATICA
f[n_, l_] := (f[n, l] =
Sum[(3 - 2 i + 2 l) f[n - i, i], {i, 1, Min[n, l + 1]}]);
f[0, l_] := 1;
Table[Sum[f[n - l, l], {l, 1, n}], {n, 1, 20}]
CROSSREFS
Cf. A275204.
Sequence in context: A355351 A203153 A126929 * A268452 A133161 A103820
KEYWORD
nonn,more
AUTHOR
Alexander M. Haupt, Nov 01 2020
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 18:05 EDT 2024. Contains 371798 sequences. (Running on oeis4.)