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.

A119271 Triangle: number of exactly (m-1)-dimensional partitions of n, for n >= 1, m >= 0.

Original entry on oeis.org

1, 0, 1, 0, 1, 1, 0, 1, 3, 1, 0, 1, 5, 6, 1, 0, 1, 9, 18, 10, 1, 0, 1, 13, 44, 49, 15, 1, 0, 1, 20, 97, 172, 110, 21, 1, 0, 1, 28, 195, 512, 550, 216, 28, 1, 0, 1, 40, 377, 1370, 2195, 1486, 385, 36, 1, 0, 1, 54, 694, 3396, 7603, 7886, 3514, 638, 45, 1, 0, 1, 75, 1251, 7968
Offset: 1

Views

Author

Keywords

Comments

The partition of 1 is considered to be dimension -1 by convention.

Examples

			Table starts:
  1,
  0,1,
  0,1,1,
  0,1,3,1,
  0,1,5,6,1,
  ...
		

Crossrefs

Cf. A119270, A096806. Column 1 is A007042.

Formula

a(n,m) = A096806(n,m-1)-a(n,m-1). Binomial transform of n-th row lists the (m-1) dimensional partitions of n.