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.

A368220 Table read by antidiagonals: T(n,k) is the number of tilings of the n X k grid up to horizontal and vertical reflections by an asymmetric tile.

Original entry on oeis.org

1, 6, 6, 16, 76, 16, 72, 1056, 1056, 72, 256, 16576, 65536, 16576, 256, 1056, 262656, 4196352, 4196352, 262656, 1056, 4096, 4197376, 268435456, 1073790976, 268435456, 4197376, 4096, 16512, 67117056, 17180000256, 274878431232, 274878431232, 17180000256, 67117056, 16512
Offset: 1

Views

Author

Peter Kagey, Dec 18 2023

Keywords

Examples

			Table begins:
  n\k |    1       2           3              4                  5
  ----+-----------------------------------------------------------
    1 |    1       6          16             72                256
    2 |    6      76        1056          16576             262656
    3 |   16    1056       65536        4196352          268435456
    4 |   72   16576     4196352     1073790976       274878431232
    5 |  256  262656   268435456   274878431232    281474976710656
    6 | 1056 4197376 17180000256 70368756760576 288230376688582656
		

Crossrefs

Programs

  • Mathematica
    A368220[n_, m_] := 2^(n*m - 2)*(2^(n*m) + Boole[EvenQ[n*m]] + Boole[EvenQ[n]] + Boole[EvenQ[m]])