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.

Previous Showing 21-26 of 26 results.

A226997 Irregular triangle read by rows: T(n,k) is the number of distinct tilings by squares of an n X n square lattice that contain k nodes unconnected to any of their neighbors.

Original entry on oeis.org

1, 1, 1, 1, 4, 0, 0, 1, 1, 9, 16, 8, 5, 0, 0, 0, 0, 1, 1, 16, 78, 140, 88, 44, 68, 32, 0, 4, 0, 0, 0, 0, 0, 0, 1, 1, 25, 228, 964, 2003, 2178, 1842, 1626, 725, 290, 376, 184, 140, 76, 4, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 36, 520, 3920, 16859, 42944, 67312
Offset: 1

Views

Author

Keywords

Comments

The n-th row contains (n-1)^2 + 1 elements.

Examples

			For n = 3, there are 4 tilings that contain 1 isolated node, so T(3,1) = 4. A 2 X 2 square contains 1 isolated node.  Consider that each tiling is composed of ones and zeros where a one represents a node with one or more links to its neighbors and a zero represents a node with no links to its neighbors.  Then the 4 tilings are:
1 1 1 1    1 1 1 1    1 1 1 1    1 1 1 1
1 0 1 1    1 1 0 1    1 1 1 1    1 1 1 1
1 1 1 1    1 1 1 1    1 0 1 1    1 1 0 1
1 1 1 1    1 1 1 1    1 1 1 1    1 1 1 1
The irregular triangle begins:
\ k 0     1     2     3     4     5     6     7     8     9  ...
n
1   1
2   1     1
3   1     4     0     0     1
4   1     9    16     8     5     0     0     0     0     1
5   1    16    78   140    88    44    68    32     0     4  ...
6   1    25   228   964  2003  2178  1842  1626   725   290  ...
7   1    36   520  3920 16859 42944 67312 72980 69741 62952  ...
		

Crossrefs

Cf. A045846.

Programs

  • Maple
    b:= proc(n, l) option remember; local i, k, s, t;
          if max(l[])>n then 0 elif n=0 or l=[] then 1
        elif min(l[])>0 then t:=min(l[]); b(n-t, map(h->h-t, l))
        else for k do if l[k]=0 then break fi od; s:=0;
             for i from k to nops(l) while l[i]=0 do s:=s+x^((i-k)^2)
              *b(n, [l[j]$j=1..k-1, 1+i-k$j=k..i, l[j]$j=i+1..nops(l)])
             od; expand(s)
          fi
        end:
    T:= n-> (l-> seq(coeff(l,x,i), i=0..degree(l)))(b(n, [0$n])):
    seq(T(n), n=1..9);  # Alois P. Heinz, Jun 27 2013

Formula

Sum_{k=0..(n-1)^2} T(n,k) = A045846(n).
From Christopher Hunt Gribble, Jul 02 2013: (Start)
It appears that:
T(n,1) = (n-1)^2, n>1 = A000290(n-1).
T(n,2) = (n-2)(n-3)(n^2+n-4)/2, n>2 = A061995(n-1).
T(n,3) = (n-2)(n-3)(n^4-n^3-23n^2+15n+140)/6, n>2 = A061996(n-1).
T(n,4) = (n^8 - 8n^7 - 26*n^6 + 340*n^5 - 105*n^4 - 4708*n^3 + 6814*n^2 + 20852*n - 40248)/24, n>3. (End)

A362143 Maximum number of ways in which a set of integer-sided squares can tile an n X n square.

Original entry on oeis.org

1, 1, 1, 4, 16, 140, 1987, 62266, 3899340, 508317004, 108388350636, 44608244030240, 39116330784279236
Offset: 0

Views

Author

Pontus von Brömssen, Apr 10 2023

Keywords

Crossrefs

Main diagonal of A362142.
Cf. A034295, A045846, A361217 (rectangular pieces).

A334617 a(n) is the number of ways to tile a size n staircase polyomino with staircase polyominoes.

Original entry on oeis.org

1, 2, 8, 57, 806, 20840, 1038266, 97115638, 17213517207, 5768580741287
Offset: 1

Views

Author

Peter Kagey, Sep 08 2020

Keywords

Comments

A size-n staircase polynomo is a polyomino consisting of n left-aligned rows in increasing length of 1, 2, ..., n. Rotations of staircase polyominoes are also polyominoes.

Examples

			For n = 3 the a(3) = 8 tilings are:
+---+          +---+          +---+          +---+
|   |          |   |          |   |          |   |
+---+---+      +   +---+      +---+---+      +---+---+
|   |   |      |       |      |   |   |      |   |   |
+---+---+---+, +---+---+---+, +   +---+---+, +---+   +---+,
|   |   |   |  |   |   |   |  |       |   |  |   |       |
+---+---+---+  +---+---+---+  +---+---+---+  +---+---+---+
+---+          +---+          +---+          +---+
|   |          |   |          |   |          |   |
+---+---+      +---+---+      +---+---+      +   +---+
|       |      |       |      |   |   |      |       |
+---+   +---+, +   +---+---+, +---+   +---+, +       +---+.
|   |   |   |  |   |   |   |  |       |   |  |           |
+---+---+---+  +---+---+---+  +---+---+---+  +---+---+---+
		

Crossrefs

Extensions

a(8) from Seiichi Manyama, Sep 09 2020
a(9)-a(10) from Bert Dobbelaere, Sep 12 2020

A347800 Number of tilings of an n X n square using integer-sided square tiles of area > 1.

Original entry on oeis.org

1, 0, 1, 1, 2, 1, 7, 1, 48, 50, 796, 777, 24823, 9315, 1501873, 2585314, 200614419, 382810931, 52597087873, 48712723680, 27115688491527
Offset: 0

Views

Author

Alois P. Heinz, Sep 14 2021

Keywords

Examples

			a(4) = 2:
  ._._._._.   ._._._._.
  |       |   |   |   |
  |       |   |___|___|
  |       |   |   |   |
  |_______|   |___|___|   .
		

Crossrefs

Main diagonal of A226206.
Cf. A045846.

Formula

a(n) = A226206(n,n).

A358715 a(n) is the number of distinct ways to cut an equilateral triangle with edges of size n into equilateral triangles with integer sides.

Original entry on oeis.org

1, 2, 5, 26, 220, 3622, 105859, 5677789, 553715341, 98404068313, 31850967186980, 18779046566454536, 20167518569123722322, 39451359692134386945019
Offset: 1

Views

Author

Craig Knecht and John Mason, Nov 28 2022

Keywords

Comments

In other words, the number of equilateral triangular tilings of an equilateral triangle, where rotations and reflections are considered distinct.

Examples

			a(3)=5 because of:
    /\      /\      /\      /\      /\
   /  \    /\/\    /  \    /\/\    /\/\
  /    \  /  \/\  /\/\/\  /\/  \  /\/\/\
		

Crossrefs

Extensions

a(10)-a(14) from Walter Trump, Dec 03 2022

A380608 a(n) is the number of distinct ways to cut a hexagon with edges of size n into diamonds with integer sides.

Original entry on oeis.org

2, 37, 6330, 12807773
Offset: 0

Views

Author

Craig Knecht, Jan 28 2025

Keywords

Comments

The number of ways to cut a diamond with edges of size n into diamonds with integer sides is A045846.

Crossrefs

Cf. A045846.
Previous Showing 21-26 of 26 results.