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.

A220824 Number of rooted gene trees with n leaves on the label set [4].

Original entry on oeis.org

4, 10, 60, 430, 3396, 28818, 256172, 2357138, 22253672, 214370398, 2098593628, 20817790876, 208801698676, 2113957366698, 21574762692484, 221729081428478, 2292720460828372, 23835381083324608, 248987501825970604, 2612160344953154508, 27510833867426222908
Offset: 1

Views

Author

N. J. A. Sloane, Dec 22 2012

Keywords

Crossrefs

Column 4 of A319254.

Programs

  • Mathematica
    A[n_, k_] := A[n, k] = If[n < 2, k n, If[OddQ[n], 0, (# (1 - #)/2)&[A[n/2, k]]] + Sum[A[i, k] A[n - i, k], {i, 1, n/2}]];
    T[n_, k_] := Sum[(-1)^i Binomial[k, i] A[n, k - i], {i, 0, k}];
    a[n_] := T[n, 5];
    Array[a, 22] (* Jean-François Alcover, Sep 02 2019, after Alois P. Heinz in A319254 *)

Extensions

Terms a(11) and beyond from Andrew Howroyd, Sep 17 2018