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.

A071213 Number of labeled planar trees with n nodes such that the root is smaller than all its children.

Original entry on oeis.org

1, 4, 34, 436, 7428, 157368, 3980688, 116949600, 3911421600, 146673662400, 6093249563520, 277729608280320, 13778539159795200, 739059210587980800, 42615627311477606400, 2628646012982829772800, 172704619437756321484800
Offset: 2

Views

Author

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

Keywords

Crossrefs

Programs

  • Maple
    n -> 2 * sum((n-1) * (n-2+k)! / (k! * (n-1-k)), k=0 .. n-2) - ((2*n-3)! / (n-2)!);
  • Maxima
    C(x):=(1-sqrt(1-4*x))/(2);
    F(x):=1+log(1-x)/x-log(1-x);
    makelist(n!*coeff(taylor(F(C(x))+x*diff(F(C(x)),x),x,0,15),x,n),n,1,15); /*Vladimir Kruchinin, Mar 23 2016 */

Formula

E.g.f.: F(C(x))+x*[F(C(x))]', where C(x)/x is g.f. of Catalan numbers (A000108), F(x)=1+log(1-x)/x-log(1-x). - Vladimir Kruchinin, Mar 23 2016