OFFSET
0,2
COMMENTS
There is a unique way to tile the half-quadrant X with L-tiles and backward-L tiles:
| .
| .
| . X
| .
-----------+-----------
|
|
|
|
- let B denote the bottom two squares of a tile and t the top square of a tile,
- let e denote an empty square and s denote the rightmost empty square,
- the bottom row T_0 can be represented as the infinite word rB*,
- for any k > 0, the row T_k can be build from the lower row T_{k-1} by applying the following substitutions from left to right:
e -> e
st -> es
sB -> est
tt -> B
tB -> Bt
Bt -> tB
BB -> tBt
LINKS
Rémy Sigrist, Table of n, a(n) for n = 0..5000
Rémy Sigrist, Illustration of initial terms
Rémy Sigrist, Colored representation of the nodes at distance <= 500 from the origin (the color is a function of the distance)
Rémy Sigrist, C# program for A342179
EXAMPLE
See illustration in Links section.
PROG
(C#) See Links section.
CROSSREFS
KEYWORD
nonn
AUTHOR
Rémy Sigrist, Mar 04 2021
STATUS
approved