login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A050383 Permutation rooted trees with n nodes. 17
1, 1, 3, 8, 25, 77, 262, 897, 3208, 11658, 43243, 162477, 618219, 2374699, 9200541, 35903017, 140997527, 556798525, 2209685939, 8807924914, 35248187347, 141564134395, 570402287162, 2305138038036, 9340981510156, 37946616550787 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
LINKS
C. G. Bower, Transforms (2)
N. J. A. Sloane, Transforms
FORMULA
G.f. (with offset 0) satisfies: A(x) = 1/Product_{n>=1} (1 - x^n*A(x^n)). - Paul D. Hanna, Sep 28 2011
Shifts left under transform T where Ta is EULER(CIK(a)).
a(n) ~ c * d^n / n^(3/2), where d = 4.313133937842504228... and c = 0.153549235191409889... - Vaclav Kotesovec, Nov 05 2021
MATHEMATICA
m = 26; A[_] = 0;
Do[A[x_] = 1/Product[1 - x^n A[x^n], {n, 1, m}] + O[x]^m // Normal, {m}];
CoefficientList[A[x], x] (* Jean-François Alcover, Oct 02 2019 *)
PROG
(PARI) {a(n)=local(A=1+x); for(i=1, n, A=1/prod(k=1, n, (1-x^k*subst(A, x, x^k+x*O(x^n))))); polcoeff(A, n)} /* Paul D. Hanna */
CROSSREFS
Sequence in context: A148791 A148792 A007563 * A060404 A192905 A192207
KEYWORD
nonn,eigen
AUTHOR
Christian G. Bower, Nov 15 1999
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 04:14 EDT 2024. Contains 371918 sequences. (Running on oeis4.)