proposed
approved
proposed
approved
editing
proposed
For n > 0, a(n) is the number of ways to tile a strip of length n with squares, dominoes, and two colors of trominoes, with the restriction that the first tile can not cannot be a square. - _Greg Dresden _ and Bora Bursalı, Aug 31 2023
proposed
editing
editing
proposed
For n > 0, a(n) is the number of ways to tile a strip of length n with squares, dominoes, and two colors of trominoes, with the restriction that the first tile can not be a square. - Greg Dresden and Bora Bursalı, Aug 31 2023
approved
editing
(MAGMAMagma) R<x>:=PowerSeriesRing(Integers(), 50); Coefficients(R!( (1-x)/(1-x-x^2-2*x^3) )); // G. C. Greubel, Jun 28 2019
editing
approved
G.f.: (1 - x) / ((1 - 2*x) * (1 + x + x^2)). - Michael Somos, Nov 18 2020
a(6) = 19 = A077947(4) + 2*A077947(3) = 9 + 2*5 = 19.
G.f. = 1 + x^2 + 3*x^3 + 4*x^4 + 9*x^5 + 19*x^6 + 36*x^7 + 73*x^8 + ... - Michael Somos, Nov 18 2020
(PARI) {a(n) = ([0, 1, 1; 1, 1, 0; 0, 2, 0]^n)[1, 1]}; /* Michael Somos, Nov 18 2020 */
approved
editing
reviewed
approved
proposed
reviewed