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.

A005355 Number of asymmetric permutation rooted trees with n nodes.

Original entry on oeis.org

0, 1, 1, 1, 3, 7, 21, 61, 187, 577, 1825, 5831, 18883, 61699, 203429, 675545, 2258291, 7592249, 25656477, 87096661, 296891287, 1015797379, 3487272317, 12008898531, 41471260883, 143588078449, 498343911529, 1733410858955, 6041795275027, 21098924740155
Offset: 0

Views

Author

Keywords

References

  • N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).

Crossrefs

Programs

  • Mathematica
    a[0] = 1; a[1] = 1; a[n_] := a[n] = Sum[a[k]*a[n-k], {k, 1, n-1}] - If[EvenQ[n-1], a[(n-1)/2], 0]; Table[a[n], {n, 0, 27}] (* Jean-François Alcover, Jan 04 2016 *)

Formula

Shifts left under transform T where Ta has g.f. (1-A(x^2))/(1-A(x)).

Extensions

More terms, formula from Christian G. Bower, Nov 15 1999