OFFSET
1,2
COMMENTS
Given n strips, each of length n squares (dimensions 1 X n), a(n) is the number of distinct shapes that can be created by setting the strips side by side while satisfying the condition that the shape must include at least one row of length L=n squares (row considered to be a direction measured perpendicular to the strips). Shapes differing only by a rotation are considered to be equivalent.
LINKS
Joseph Rozhenko, Illustration of a(3) = 11
FORMULA
From Jinyuan Wang, Oct 08 2021: (Start)
a(2*k+1) = ((2*k+1)^(2*k+1) - (2*k)^(2*k+1) + (2*k+1)^k) / 2.
a(2*k) = ((2*k)^(2*k) - (2*k-1)^(2*k) + (2*k)^k + (2*k-1)^k) / 2.
(End)
PROG
(PARI) a(n) = (n^n - (n-1)^n + n^(n\2) + !(n%2)*(n-1)^(n\2))/2; \\ Jinyuan Wang, Oct 08 2021
CROSSREFS
KEYWORD
nonn
AUTHOR
Joseph Rozhenko, Oct 04 2021
EXTENSIONS
More terms from Jinyuan Wang, Oct 08 2021
STATUS
approved