login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A161552 E.g.f. satisfies: A(x,y) = exp(x*y*exp(x*A(x,y))). 2
1, 0, 1, 0, 2, 1, 0, 3, 12, 1, 0, 4, 72, 48, 1, 0, 5, 320, 810, 160, 1, 0, 6, 1200, 8640, 6480, 480, 1, 0, 7, 4032, 70875, 143360, 42525, 1344, 1, 0, 8, 12544, 489888, 2240000, 1792000, 244944, 3584, 1, 0, 9, 36864, 3000564, 27869184, 49218750, 18579456 (list; table; graph; refs; listen; history; internal format)
OFFSET

0,5

COMMENTS

E.g.f.: A(x,y) = Sum_{n>=0} Sum_{k=0..n} T(n,k)*x^n*y^k/n!.

Row sums, (n+1)^(n-1), equal A000272 (number of trees on n labeled nodes).

FORMULA

T(n,k) = binomial(n,k) * (n-k+1)^(k-1) * k^(n-k).

E.g.f. A(x,y) at y=1: A(x,1) = LambertW(-x)/(-x).

Contribution from Paul D. Hanna (pauldhanna(AT)juno.com), Jun 14 2009: (Start)

More generally, if G(x) = exp(p*x*exp(q*x*G(x))),

where G(x)^m = Sum_{n>=0} g(n,m)*x^n/n!,

then g(n,m) = Sum_{k=0..n} C(n,k)*p^k*q^(n-k)*m*(n-k+m)^(k-1)*k^(n-k).

(End)

EXAMPLE

Triangle begins:

1;

0,1;

0,2,1;

0,3,12,1;

0,4,72,48,1;

0,5,320,810,160,1;

0,6,1200,8640,6480,480,1;

0,7,4032,70875,143360,42525,1344,1;

0,8,12544,489888,2240000,1792000,244944,3584,1;

0,9,36864,3000564,27869184,49218750,18579456,1285956,9216,1; ...

PROG

(PARI) {T(n, k)=binomial(n, k)*(n-k+1)^(k-1)*k^(n-k)}

(PARI) {T(n, k)=local(A=1+x); for(i=0, n, A=exp(x*y*exp(x*A+O(x^n)))); n!*polcoeff(polcoeff(A, n, x), k, y)}

CROSSREFS

Cf. A000272, A072590; A161565, A161566, A161567, A141369.

Sequence in context: A077874 A153007 A090683 * A095859 A191897 A088850

Adjacent sequences:  A161549 A161550 A161551 * A161553 A161554 A161555

KEYWORD

nonn,tabl

AUTHOR

Paul D. Hanna (pauldhanna(AT)juno.com), Jun 13 2009, Jun 14 2009

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 14 15:39 EST 2012. Contains 205635 sequences.