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

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A162655 E.g.f. satisfies: A(x) = (1 + x*A(x))^A(x). 3
1, 1, 4, 33, 416, 7100, 153234, 4004000, 122919208, 4336955424, 172946624880, 7692618593352, 377615317473624, 20278301717340888, 1182581903027279832, 74428445506232769240, 5028336618916834615104, 362962785521720282899200 (list; graph; refs; listen; history; internal format)
OFFSET

0,3

COMMENTS

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

More generally, if G(x) = (1 + x*G(x)^p)^(G(x)^q), then

[x^n/n! ] G(x)^m = Sum_{k=0..n} m*(pn+qk+m)^(k-1) * Stirling1(n,k), and

[x^n/n! ] log(G(x)) = Sum_{k=1..n} (pn+qk)^(k-1) * Stirling1(n,k). (End)

FORMULA

(1) a(n) = Sum_{k=0..n} (n+k+1)^(k-1) * Stirling1(n,k).

Let A(x)^m = Sum_{n>=0} a(n,m)*x^n/n!, then

(2) a(n,m) = Sum_{k=0..n} m*(n+k+m)^(k-1) * Stirling1(n,k) ;

which is equivalent to the following:

(3) a(n,m) = Sum_{k=0..n} m*(n+k+m)^(k-1) * {[x^(n-k)] Product_{j=1..n-1} (1-j*x) };

(4) a(n,m) = n!*Sum_{k=0..n} m*(n+k+m)^(k-1) * {[x^(n-k)] (log(1+x)/x)^k/k!}.

EXAMPLE

E.g.f.: A(x) = 1 + x + 4*x^2/2! + 33*x^3/3! + 416*x^4/4! + 7100*x^5/5! +...

log(A(x)) = A(x)*log(1 + x*A(x)) where

log(A(x)) = x + 3*x^2/2! + 23*x^3/3! + 278*x^4/4! + 4624*x^5/5! + 98064*x^6/6! +...

log(1 + x*A(x)) = x + x^2/2! + 8*x^3/3! + 90*x^4/4! + 1444*x^5/5! + 29880*x^6/6! +...

PROG

(PARI) {a(n, m=1)=sum(k=0, n, m*(n+k+m)^(k-1)*polcoeff(prod(j=1, n-1, 1-j*x), n-k))}

(PARI) {a(n, m=1)=sum(k=0, n, m*(n+k+m)^(k-1)*n!/k!*polcoeff((log(1+x+x*O(x^n))/x)^k, n-k))}

(PARI) {Stirling1(n, k)=n!*polcoeff(binomial(x, n), k)}

{a(n, m=1)=sum(k=0, n, m*(n+k+m)^(k-1)*Stirling1(n, k))}

CROSSREFS

Cf. A008275 (Stirling1), A141209 (variant).

Cf. A162863. [From Paul D. Hanna (pauldhanna(AT)juno.com), Jul 19 2009]

Sequence in context: A166906 A156132 A111534 * A052885 A192548 A119821

Adjacent sequences:  A162652 A162653 A162654 * A162656 A162657 A162658

KEYWORD

nonn

AUTHOR

Paul D. Hanna (pauldhanna(AT)juno.com), Jul 08 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 23:44 EST 2012. Contains 205689 sequences.