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!)
A219359 G.f. satisfies: A(x) = Sum_{n>=0} n! * x^n * A(x)^(n*(n+1)/2). 3
1, 1, 3, 15, 99, 785, 7151, 73097, 827501, 10295549, 140100323, 2077648871, 33466994639, 583535328293, 10971899911703, 221571516903233, 4786126571515961, 110142864494603313, 2690257065904106571, 69500954207702580927, 1893141166438848208747, 54217997416999007587201 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
G.f. satisfies: A(x) = B(x*A(x)) and A(x/B(x)) = B(x) where B(x) satisfies:
B(x) = Sum_{n>=0} n!*x^n * B(x)^(n*(n-1)/2) and is the g.f. of A219358.
EXAMPLE
G.f.: A(x) = 1 + x + 3*x^2 + 15*x^3 + 99*x^4 + 785*x^5 + 7151*x^6 +...
where
A(x) = 1 + 1!*x*A(x) + 2!*x^2*A(x)^3 + 3!*x^3*A(x)^6 + 4!*x^4*A(x)^10 + 5!*x^5*A(x)^15 +...
PROG
(PARI) {a(n)=local(A=1+x); for(i=1, n, A=sum(k=0, n, k!*x^k*(A+x*O(x^n))^(k*(k+1)/2))); polcoeff(A, n)}
for(n=0, 25, print1(a(n), ", "))
CROSSREFS
Sequence in context: A091713 A156106 A111546 * A152402 A361596 A255806
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Nov 18 2012
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 18 22:18 EDT 2024. Contains 371782 sequences. (Running on oeis4.)