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.

A062993 A triangle (lower triangular matrix) composed of Pfaff-Fuss (or Raney) sequences.

Original entry on oeis.org

1, 1, 1, 2, 1, 1, 5, 3, 1, 1, 14, 12, 4, 1, 1, 42, 55, 22, 5, 1, 1, 132, 273, 140, 35, 6, 1, 1, 429, 1428, 969, 285, 51, 7, 1, 1, 1430, 7752, 7084, 2530, 506, 70, 8, 1, 1, 4862, 43263, 53820, 23751, 5481, 819, 92, 9
Offset: 0

Views

Author

Wolfdieter Lang, Jul 12 2001

Keywords

Comments

The column sequences (without leading zeros) appear in eq.(7.66), p. 347 of the Graham et al. reference, in Th. 0.3, p. 66, of Hilton and Pedersen reference, as first columns of the S-triangles in the Hoggatt and Bicknell reference and in eq. 5 of the Frey and Sellers reference. They are also called m-Raney (here m=k+2) or Fuss-Catalan sequences (see Graham et al. for reference). For the history and the name Pfaff-Fuss see Brown reference, p. 975. PF(n,m) := binomial(m*n+1,n)/(m*n+1), m >= 2.
Also called generalized Catalan numbers.

Examples

			The triangle a(n, k) begins:
n\k     0      1      2      3     4     5    6   7  8  9 10 ...
0:      1
1:      1      1
2:      2      1      1
3:      5      3      1      1
4:     14     12      4      1     1
5:     42     55     22      5     1     1
6:    132    273    140     35     6     1    1
7:    429   1428    969    285    51     7    1   1
8:   1430   7752   7084   2530   506    70    8   1  1
9:   4862  43263  53820  23751  5481   819   92   9  1  1
10: 16796 246675 420732 231880 62832 10472 1240 117 10  1  1
... Reformatted by _Wolfdieter Lang_, Feb 06 2020
		

References

  • R. L. Graham, D. E. Knuth and O. Patashnik, Concrete Mathematics. Addison-Wesley, Reading, MA, 2nd. ed., 1994.

Crossrefs

Reflected version of A070914.
Columns k=0..9 (without leading zeros) give sequences A000108 (Catalan), A001764, A002293, A002294, A002295, A002296, A007556, A062994, A059968, A230388.

Programs

  • Mathematica
    a[n_, k_] = Binomial[(k+2)*(n-k), n-k]/((k+1)*(n-k) + 1);
    Flatten[Table[a[n, k], {n, 0, 9}, {k, 0, n}]][[1 ;; 53]]
    (* Jean-François Alcover, May 27 2011, after formula *)

Formula

a(n, k) = binomial((k+2)*(n-k), n-k)/((k+1)*(n-k)+1) = PF(n-k, k+2) if n-k >= 0, otherwise 0.
G.f. for column k: A(k, x) := x^k*RootOf(_Z^(k+2)*x-_Z+1) (Maple notation, from ECS, see links for column sequences and Graham et al. reference eq.(5.59) p. 200 and p. 349).