A355477 Maximum number of skew-tetrominoes that can be packed into an n X n square.
0, 0, 1, 3, 4, 8, 9, 14, 16, 23, 25, 33, 36, 46, 49, 60, 64, 77, 81, 96, 100
Offset: 1
Examples
a(8) = 14 by the following packing of 14 skew-tetrominoes into an 8 X 8 square: _______________ |_|1 _| |___| |_| |___| 2_|3 _|_4 | |_ 5|_|___| | |_| | |___| | 6_|_7 | |_8 | 9_|_|_10|_| | |_|_|11_| |___| |_12|___|13_|14_| |_|_|___|_|___|_|
Links
- Alexander D. Healy, Examples of (near-)optimal packings for n <= 42
- Wikipedia, Tetromino
Crossrefs
Cf. A256535.
Formula
a(n) < n^2/4.
a(2m+1) = m^2.
Comments