cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-2 of 2 results.

A233320 Number A(n,k) of tilings of a k X n rectangle using trominoes of any shape; square array A(n,k), n>=0, k>=0, read by antidiagonals.

Original entry on oeis.org

1, 1, 1, 1, 0, 1, 1, 0, 0, 1, 1, 1, 0, 1, 1, 1, 0, 3, 3, 0, 1, 1, 0, 0, 10, 0, 0, 1, 1, 1, 0, 23, 23, 0, 1, 1, 1, 0, 11, 62, 0, 62, 11, 0, 1, 1, 0, 0, 170, 0, 0, 170, 0, 0, 1, 1, 1, 0, 441, 939, 0, 939, 441, 0, 1, 1, 1, 0, 41, 1173, 0, 8342, 8342, 0, 1173, 41, 0, 1
Offset: 0

Views

Author

Alois P. Heinz, Dec 07 2013

Keywords

Comments

Every row and column satisfies a linear recurrence. - Peter Kagey, Jul 17 2019

Examples

			Square array A(n,k) begins:
  1, 1,  1,    1,   1,    1,       1, ...
  1, 0,  0,    1,   0,    0,       1, ...
  1, 0,  0,    3,   0,    0,      11, ...
  1, 1,  3,   10,  23,   62,     170, ...
  1, 0,  0,   23,   0,    0,     939, ...
  1, 0,  0,   62,   0,    0,    8342, ...
  1, 1, 11,  170, 939, 8342,   80092, ...
  1, 0,  0,  441,   0,    0,  614581, ...
  1, 0,  0, 1173,   0,    0, 5271923, ...
		

Crossrefs

Formula

A(n,k) = 0 <=> n*k mod 3 > 0.

A046984 Number of ways to tile a 4 X 3n rectangle with right trominoes.

Original entry on oeis.org

1, 4, 18, 88, 468, 2672, 16072, 100064, 636368, 4097984, 26579488, 173093760, 1129796928, 7383588608, 48287978624, 315921649152, 2067346607360, 13530037877760, 88555066819072, 579620448450560, 3793872862974976, 24832858496561152, 162544900186359808
Offset: 0

Views

Author

Cristopher Moore (moore(AT)santafe.edu)

Keywords

Comments

The sequence of tiling 2 X 3n rectangles with L-trominoes is 2^n. The sequence of tiling 3 X 2n rectangles is 2^n. All these tilings have vertical faults but no horizontal faults. - R. J. Mathar, Dec 08 2022
This sequence is the Hadamard sum of the following 4 sequences: 0, 0, 16, 64, 256, 1024, 4096... (A000302, tilings which have both vertical and horizontal faults), 0, 4, 0, 0, 0, 0, 0, ...(tilings which have horizontal but no vertical faults), 0, 0, 0, 16, 164, 1360, 10248, 73312, 508624, 3462592, 23291424.. (tilings which have vertical but no horizontal faults), 1, 0, 2, 8, 48, 288, 1728, 10368,.. (essentially A084477, tilings which have neither vertical nor horizontal faults). - R. J. Mathar, Dec 08 2022

References

  • Suggested on p. 96 of 1994 edition of "Polyominoes" by Samuel W. Golomb.

Crossrefs

Cf. A084478 (5 X 3n), A351323 (6 X n), A351324 (7 X 3n), A049086 (straight trominoes), A233339 (mixed trominoes).

Programs

  • Maple
    a:= n-> (<<0|1|0>, <0|0|1>, <-4|-22|10>>^n. <<1, 4, 18>>)[1, 1]:
    seq(a(n), n=0..22);  # Alois P. Heinz, Feb 21 2022
  • Mathematica
    CoefficientList[Series[(1-6x)/(1-10x+22x^2+4x^3),{x,0,40}],x] (* or *) LinearRecurrence[{10,-22,-4},{1,4,18},40] (* Harvey P. Dale, Mar 31 2012 *)
  • PARI
    a(n)=([0,1,0; 0,0,1; -4,-22,10]^n*[1;4;18])[1,1] \\ Charles R Greathouse IV, Feb 10 2017

Formula

G.f.: (1 - 6*x)/(1 - 10*x + 22*x^2 + 4*x^3).
a(0)=1, a(1)=4, a(2)=18, a(n)=10*a(n-1)-22*a(n-2)-4*a(n-3). - Harvey P. Dale, Mar 31 2012
Showing 1-2 of 2 results.