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.

A007856 Subtrees in rooted plane trees on n nodes.

Original entry on oeis.org

1, 3, 12, 52, 236, 1109, 5366, 26639, 135300, 701269, 3700400, 19834973, 107784622, 592705377, 3292970302, 18458954896, 104276682820, 593056996445, 3392898090908, 19512100041995, 112729617387020, 653965783541960, 3807766434556940
Offset: 1

Views

Author

Keywords

Programs

  • Mathematica
    Rest[CoefficientList[Series[(1/8) (1 + 1/Sqrt[1 - 4  x]) (1 + Sqrt[1 - 4  x] - Sqrt[2]  Sqrt[1 - 10  x + Sqrt[1 - 4  x]]), {x, 0, 33}], x]] (* Vincenzo Librandi, Feb 07 2018 *)
    A007856[n_] := ((n-1)/2) CatalanNumber[n-1](1 - Hypergeometric2F1[-1/2, - n, n-1, -4]); Table[A007856[n], {n, 1, 23}] (* Peter Luschny, Aug 04 2019 *)

Formula

G.f.: (1/8) * (1 + 1/sqrt(1-4*x)) * (1 + sqrt(1-4*x) - sqrt(2) * sqrt(1 - 10*x + sqrt(1-4*x))), see Klazar's paper. - Sean A. Irvine, Feb 06 2018
a(n) = ((n - 1)/2)*CatalanNumber(n-1)*(1 - hypergeom([-1/2, -n], [n - 1], -4)). - Peter Luschny, Aug 04 2019

Extensions

More terms from Sean A. Irvine, Feb 06 2018