login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A360419 a(n) = the number of U-frame polyominoes with n cells, reduced for symmetry. 4
0, 0, 0, 0, 1, 2, 5, 9, 16, 24, 37, 50, 71, 93, 121, 151, 192, 231, 285, 338, 398, 470, 548, 626, 723, 827, 924, 1056, 1175, 1314, 1454, 1629, 1763, 1985, 2138, 2356, 2540, 2820, 2976, 3305, 3491, 3834, 4039, 4441, 4613, 5103, 5291, 5775, 5999, 6572 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,6
COMMENTS
A U-frame polyomino has a perimeter that forms a self-avoiding polygon such that as you traverse the perimeter counterclockwise you encounter turns in the order LLLLLLRR.
LINKS
FORMULA
G.f.: Sum_{k>=1} (x^k/(1 - x^k)) * (B(k+1, x)^2 + B(k+1, x^2))/2 where B(k, x) = Sum_{j>=k} x^j/(1 - x^j). - Andrew Howroyd, Feb 07 2023
EXAMPLE
a(5)=1 because of:
OO
O
OO
The a(7) = 5 polyominoes are:
O
O O O O
O O O O O OO O O O O
OOO OOO OOOO OOOO OOOOO
PROG
(PARI) B(n, k, x) = sum(j=k, n, x^j/(1 - x^j), O(x*x^n))
seq(n) = Vec(sum(k=1, (n-2)\3, x^k*(B(n-k, k+1, x)^2 + B((n-k)\2, k+1, x^2))/(1-x^k), O(x*x^n))/2, -n) \\ Andrew Howroyd, Feb 07 2023
CROSSREFS
Sequence in context: A345140 A072829 A169740 * A282044 A138226 A175287
KEYWORD
nonn
AUTHOR
John Mason, Feb 06 2023
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 28 22:27 EDT 2024. Contains 372095 sequences. (Running on oeis4.)