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!)
A161629 E.g.f. satisfies: A(x) = exp( x*Catalan(x*A(x)) ), where Catalan(x) = (1-sqrt(1-4*x))/(2*x) is the g.f. of A000108. 2
1, 1, 3, 25, 349, 6821, 171421, 5265625, 191160201, 8007548617, 380157603481, 20171371753061, 1182973489103869, 75984447924612397, 5305029326492409333, 400014338565211619761, 32396515980658185762961 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
E.g.f.: A(x) = exp(F(x)) where F(x) = x + F(x)^2*exp(F(x)) is the e.g.f. of A213643.
E.g.f.: A(x) = Sum_{n>=0} a(n)*x^n/n!, where
a(n) = Sum_{k=0..n} n! * (n-k+1)^(k-1)/k! * C(2*n-k,n-k)*k/(2*n-k).
Let A(x)^m = Sum_{n>=0} a(n,m)*x^n/n!, then
a(n,m) = Sum_{k=0..n} n! * m*(n-k+m)^(k-1)/k! * C(2*n-k,n-k)*k/(2*n-k).
...
O.g.f.: A(x) = 1 + Sum_{n>=1} (2*n-2)!/(n-1)! * x^n/(1 - n*x)^(2*n-1).
a(n) ~ n^(n-1) * sqrt((r*s^3*(1-6*r*s+8*r^2*s^2)) / (1 - (-2+8*r+r^2)*s + 4*r*(-4+4*r+r^2)*s^2 + 4*r^2*(8+r)*s^3)) / (exp(n) * r^n), where s = 1.370489293947401403417767032... is the root of the equation log(s)*(1-s*log(s)) + 2*(1+s) = (1+2*s) * sqrt((1+s)/s), and r = log(s)*(1-s*log(s)) = 0.179036084709909351719214... - Vaclav Kotesovec, Feb 26 2014
EXAMPLE
E.g.f.: A(x) = 1 + x + 3*x^2/2! + 25*x^3/3! + 349*x^4/4! + 6821*x^5/5! +...
log(A(x))/x = 1 + x*A(x) + 2*x^2*A(x)^2 + 5*x^3*A(x)^3 + 14*x^4*A(x)^4 +...+ A000108(n)*x^n*A(x)^n +...
log(A(x))/x = 1 + x + 6*x^2/2! + 63*x^3/3! + 988*x^4/4! + 20725*x^5/5! +...+ A213644(n)*x^n/n! +...
log(A(x)) = x + 2*x^2/2! + 18*x^3/3! + 252*x^4/4! + 4940*x^5/5! +...+ A213643(n)*x^n/n! +...
Ordinary Generating Function:
O.g.f.: 1 + x + 3*x^2 + 25*x^3 + 349*x^4 + 6821*x^5 + 171421*x^6 +...
O.g.f.: 1 + x/(1-x) + 2*x^2/(1-2*x)^3 + 6*2!*x^3/(1-3*x)^5 + 20*3!*x^4/(1-4*x)^7 + 70*4!*x^5/(1-5*x)^9 + 252*5!*x^6/(1-6*x)^11 +...+ (2*n-2)!/(n-1)!*x^n/(1-n*x)^(2*n-1) +...
MATHEMATICA
Flatten[{1, Table[Sum[n!/k!*(n-k+1)^(k-1)*Binomial[2*n-k, n-k]*k/(2*n-k), {k, 0, n}], {n, 1, 20}]}] (* Vaclav Kotesovec, Feb 26 2014 *)
PROG
(PARI) {a(n, m=1)=if(n==0, 1, sum(k=0, n, n!/k!*m*(m+n-k)^(k-1)*binomial(2*n-k, n-k)*k/(2*n-k)))}
(PARI) {a(n, m=1)=local(A=1+x+x*O(x^n)); for(i=1, n, A=exp((1-sqrt(1-4*x*A))/(2*A))); n!*polcoeff(A^m, n)}
(PARI) /* O.g.f.: */
{a(n)=polcoeff(1+sum(m=1, n, (2*m-2)!/(m-1)!*x^m/(1-m*x+x*O(x^n))^(2*m-1)), n)}
CROSSREFS
Cf. A213643 (log), A214689, A000108.
Sequence in context: A325286 A085527 A093360 * A129506 A143139 A231637
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jun 17 2009
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 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)