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.

A071210 Triangular array T(n,k) read by rows, giving number of labeled free trees such that the root is smaller than all its children, with respect to the number n of vertices and to the degree k of the root.

Original entry on oeis.org

1, 3, 1, 18, 8, 1, 160, 80, 15, 1, 1875, 1000, 225, 24, 1, 27216, 15120, 3780, 504, 35, 1, 470596, 268912, 72030, 10976, 980, 48, 1, 9437184, 5505024, 1548288, 258048, 26880, 1728, 63, 1, 215233605, 127545840, 37200870, 6613488, 765450, 58320
Offset: 1

Views

Author

Cedric Chauve (chauve(AT)lacim.uqam.ca), May 16 2002

Keywords

Crossrefs

Cf. A000312, A052182 (first column).

Programs

  • Maple
    (n,k) -> binomial(n+1,k+1)*k*n^(n-k-1)
  • PARI
    tabl(nn) = for (n=1, nn, for (k=1, n, print1(binomial(n+1, k+1)*k*n^(n-k-1), ", ");); print) \\ Michel Marcus, Jun 27 2013

Formula

T(n,k) = binomial(n+1, k+1)*k*n^(n-k-1).