login
A387598
a(n) is the number of 3 element sets of distinct integer sided strict rectangles that fill an n X n square.
2
0, 0, 0, 1, 4, 7, 13, 17, 27, 32, 45, 52, 68, 76, 96, 105, 128, 139, 165, 177, 207, 220, 253, 268, 304, 320, 360, 377, 420, 439, 485, 505, 555, 576, 629, 652, 708, 732, 792, 817, 880, 907, 973, 1001, 1071, 1100, 1173, 1204, 1280, 1312
OFFSET
1,5
COMMENTS
A strict rectangle is a rectangle that is not a square.
FORMULA
From Andrew Howroyd, Sep 03 2025: (Start)
a(n) = floor((n - 1)/2)*(n - 3) + round((n - 3)^2/12).
G.f.: x^4*(1 + 4*x + 5*x^2 + 4*x^3)/((1 - x)^3*(1 + x)^2*(1 + x + x^2)). (End)
EXAMPLE
a(5) = 4 sets of integer sided rectangles are:
{(1 X 2), (1 X 3), (4 X 5)},
{(1 X 2), (2 X 4), (3 X 5)},
{(1 X 3), (2 X 5), (3 X 4)},
{(1 X 5), (2 X 4), (3 X 4)}.
CROSSREFS
Column k = 3 of A388143.
Sequence in context: A310822 A265704 A110267 * A049698 A288823 A310823
KEYWORD
nonn,easy
AUTHOR
Janaka Rodrigo, Sep 02 2025
STATUS
approved