OFFSET
1,5
COMMENTS
A strict rectangle is a rectangle that is not a square.
LINKS
Andrew Howroyd, Table of n, a(n) for n = 1..10000
Index entries for linear recurrences with constant coefficients, signature (0,2,1,-1,-2,0,1).
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
KEYWORD
nonn,easy
AUTHOR
Janaka Rodrigo, Sep 02 2025
STATUS
approved
