A360499 Number of ways to tile an n X n square using rectangles with distinct dimensions.
1, 1, 21, 269, 4489, 82981, 2995185, 118897973
Offset: 1
Examples
a(1) = 1 as the only way to tile a 1 x 1 square is with a square with dimensions 1 x 1. a(2) = 1 as the only way to tile a 2 x 2 square is with a square with dimensions 2 x 2. a(3) = 21. The possible tilings, excluding those equivalent by symmetry, are: . +---+---+---+ +---+---+---+ +---+---+---+ +---+---+---+ | | | | | | | | | | + + +---+---+---+ +---+---+ + +---+---+---+ | | | | | | | | | + + + + + + + + + | | | | | | | | | +---+---+---+ +---+---+---+ +---+---+---+ +---+---+---+ . The first tiling can occur in 1 way, the second in 8 different ways, the third in 8 different ways and the fourth in 4 different ways, giving 21 ways in total.
Comments