login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A005355
Number of asymmetric permutation rooted trees with n nodes.
(Formerly M2680)
2
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,5
REFERENCES
N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
LINKS
Gilbert Labelle, Counting asymmetric enriched trees, J. Symbolic Comput. 14 (1992), no. 2-3, 211-242.
FORMULA
Shifts left under transform T where Ta has g.f. (1-A(x^2))/(1-A(x)).
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 *)
CROSSREFS
Sequence in context: A102877 A122983 A351822 * A182399 A025235 A129366
KEYWORD
nonn,nice,easy,eigen
EXTENSIONS
More terms, formula from Christian G. Bower, Nov 15 1999
STATUS
approved