A028247 Number of T-frame polyominoes with n cells.
0, 0, 0, 1, 2, 6, 10, 19, 28, 44, 60, 86, 110, 146, 182, 233, 278, 343, 403, 490, 557, 664, 749, 879, 978, 1132, 1237, 1435, 1551, 1771, 1905, 2168, 2296, 2608, 2758, 3101, 3256, 3655, 3798, 4274, 4419, 4936, 5087, 5670, 5809, 6472, 6602, 7339, 7462, 8271
Offset: 1
Keywords
Examples
The a(6) = 6 polyominoes are: OOO OOO OOOO OOOO OOOOO OOOOO O OO O OO O O O O O O
Links
- John Mason, Table of n, a(n) for n = 1..1000
Programs
-
PARI
B(k,x) = sum(j=1, k, x^j/(1-x^j)) seq(n) = Vec(sum(k=2, n, (x^k/(1-x^k)) * (B(k-1, x + O(x^(1+n-k)))^2 + B(k-1, x^2 + O(x^(1+n-k))))/2, O(x*x^n)), -n) \\ Andrew Howroyd, Feb 08 2023
Formula
G.f.: Sum_{k>=2} (x^k/(1-x^k)) * (B(k-1, x)^2 + B(k-1, x^2))/2 where B(k,x) = Sum_{j=1..k} x^j/(1-x^j). - Andrew Howroyd, Feb 08 2023
Extensions
a(1)-a(3) and terms a(32) and beyond from Allan C. Wechsler and John Mason, Feb 03 2023
Comments