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

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A144682 E.g.f. satisfies: A(x/A(x)^2) = exp(x). 3
1, 1, 5, 73, 2073, 92481, 5775133, 471058953, 47961475313, 5904863932609, 858738633997941, 144899744540718729, 27970301202134146441, 6106540658691499524993, 1493749158085983126737165 (list; graph; refs; listen; history; internal format)
OFFSET

0,3

FORMULA

E.g.f. satisfies: A(x) = exp( x*A(log A(x))^2 ).

E.g.f. satisfies: a(n+1) = [x^n/n!] exp(x)*A(x)^(2*n+2).

E.g.f. A(x) = G(x/2)^2 where G(x/G(x)) = exp(x) and G(x) is the g.f. of A144681.

EXAMPLE

E.g.f. A(x) = 1 + x + 5*x^2/2! + 73*x^3/3! + 2073*x^4/4! +...

ILLUSTRATE FORMULA a(n+1) = [x^n/n!] exp(x)*A(x)^(2*n+2) as follows.

Form a table of coefficients of x^k/k! in exp(x)*A(x)^(2*n) for n>=1, k>=0:

exp(x)*A(x)^2: [(1), 3, 17, 219, 5665, 239283, 14432433, ...];

exp(x)*A(x)^4: [1,(5), 41, 605, 15633, 638325, 37250233, ...];

exp(x)*A(x)^6: [1, 7,(73), 1207, 31825, 1274407, 72322201, ...];

exp(x)*A(x)^8: [1, 9, 113,(2073), 56545, 2249769, 124959057, ...];

exp(x)*A(x)^10:[1, 11, 161, 3251,(92481), 3695451, 202282081, ...];

exp(x)*A(x)^12:[1, 13, 217, 4789, 142705,(5775133), 313637833, ...];

exp(x)*A(x)^14:[1, 15, 281, 6735, 210673, 8688975,(471058953), ...]; ...

then the terms along the main diagonal form this sequence shift left.

PROG

(PARI) {a(n)=local(A=1+x+x*O(x^n)); for(n=0, n, A=exp(serreverse(x/A^2))); n!*polcoeff(A, n)}

{a(n)=local(A=1+x+sum(k=2, n-1, a(k)*x^k/k!)+x*O(x^n)); if(n==0, 1, (n-1)!*polcoeff(exp(x+x*O(x^n))*A^(2*n), n-1))}

CROSSREFS

Cf. A144681, A144683, A144684.

Sequence in context: A197764 A126748 A048144 * A096987 A096538 A012640

Adjacent sequences:  A144679 A144680 A144681 * A144683 A144684 A144685

KEYWORD

nonn

AUTHOR

Paul D. Hanna (pauldhanna(AT)juno.com), Sep 19 2008

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 15 23:34 EST 2012. Contains 205860 sequences.