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.

A365566 Triangle read by rows: T(n,d) is the number of inequivalent properly d-dimensional n-polysticks (or polyedges), 1 <= d <= n.

Original entry on oeis.org

1, 1, 1, 1, 4, 2, 1, 15, 12, 3, 1, 54, 105, 39, 6, 1, 221, 863, 566, 117, 11
Offset: 1

Views

Author

Pontus von Brömssen, Sep 09 2023

Keywords

Examples

			Triangle begins:
  n\d | 1   2   3   4   5  6
  ----+---------------------
   1  | 1
   2  | 1   1
   3  | 1   4   2
   4  | 1  15  12   3
   5  | 1  54 105  39   6
   6  | 1 221 863 566 117 11
		

Crossrefs

Cf. A000055, A049430 (polyominoes), A365565 (row sums), A385582 (fixed), A385583.

Formula

T(n,n) = A000055(n+1).
T(n,d) = A385583(n,d) - A385583(n,d-1) (with A385583(n,0) = 0). - Pontus von Brömssen, Jul 13 2025