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.

A093197 Number of labeled plane 2-trees on n triangles.

Original entry on oeis.org

1, 6, 56, 720, 11880, 240240, 5765760, 160392960, 5079110400, 180503769600, 7117005772800, 308403583488000, 14572069319808000, 745747076954880000, 41098950018846720000, 2427001153744527360000, 152901072685905223680000
Offset: 2

Views

Author

Ralf Stephan, Apr 22 2004

Keywords

Programs

  • Mathematica
    a[n_]:=n! * (2/3 * CatalanNumber[n] - 1/6 * CatalanNumber[n+1]); Array[a,50,2] (* Stefano Spezia, Sep 01 2018 *)
  • PARI
    a(n)=if(n < 2, 0, n!*(4*binomial(2*n,n)/(n+1)-binomial(2*n+2,n+1)/(n+2))/6) \\ Andrew Howroyd, Aug 31 2018

Formula

a(n) = n! * (2/3 * C(n) - 1/6 * C(n+1)), where C(n) = A000108(n).
a(n) = RisingFactorial(5 + n, n) assuming offset 0. - Peter Luschny, Mar 22 2022