OFFSET
3,6
COMMENTS
A strict rectangle is a rectangle which is not a square.
The partitions here must be valid packings of the n X n square, hence T(n,k) generally less than the number of k element sets of distinct integer sided rectangles.
FORMULA
T(n,k) = 0 for k = 1 or k > n^2.
EXAMPLE
Array begins:
====================================
n \ k| 2 3 4 5 ...
-----+------------------------------
3 | 1 0 0 0 ...
4 | 1 1 0 0 ...
5 | 2 4 5 2 ...
6 | 2 7 15 19 ...
7 | 3 13 39 90 ...
8 | 3 17 70 256 ...
9 | 4 27 132 601 ...
10 | 4 32 197 1164 ...
11 | 5 45 311 2121 ...
12 | 5 52 421 3391 ...
...
CROSSREFS
KEYWORD
tabl,nonn
AUTHOR
Janaka Rodrigo, Sep 19 2025
EXTENSIONS
More terms from Sean A. Irvine, Sep 23 2025
STATUS
approved
