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!)
A193290 E.g.f. satisfies: A(x) = 1/(1 - x*A(x))^(1 + 1/A(x)). 5
1, 2, 10, 96, 1388, 26960, 659352, 19471984, 674425600, 26814697056, 1203912012000, 60251644584384, 3326134996826688, 200792710948417536, 13159474030202943744, 930524202271542658560, 70616227020854238216192, 5724780985202503068533760 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
More generally, we have the identity:
Sum_{n>=0} (x^n/n!)*Product_{k=1..n} (1+k*y) = 1/(1 - x*y)^(1 + 1/y); here y=A(x).
LINKS
FORMULA
E.g.f. satisfies: A(x) = Sum_{n>=0} x^n/n! * Product_{k=1..n} (1 + k*A(x)).
a(n) ~ s*sqrt(r*(1+s)*(r*s-1)/(1-4*r*s+r^2*s*(2*s-1))) * n^(n-1) / (exp(n) * r^n), where s = 2.4590533113276368838... is the root of the equation (1+s)*(1+2*s) = s^(s/(1+s))*(1+s)^2 - s*log(s) and r = (1 - s^(-s/(1+s)))/s = 0.1921573821382919835... - Vaclav Kotesovec, Jan 11 2014
EXAMPLE
E.g.f.: A(x) = 1 + 2*x + 10*x^2/2! + 96*x^3/3! + 1388*x^4/4! + 26960*x^5/5! +...
where e.g.f. A = A(x) satisfies:
A = 1 + x*(1+A) + x^2*(1+A)*(1+2*A)/2! + x^3*(1+A)*(1+2*A)*(1+3*A)/3! + x^4*(1+A)*(1+2*A)*(1+3*A)*(1+4*A)/4! + x^5*(1+A)*(1+2*A)*(1+3*A)*(1+4*A)*(1+5*A)/5! +...
PROG
(PARI) {a(n)=local(A=1+x); for(i=1, n, A=1/(1-x*A +x*O(x^n))^(1+1/A)); n!*polcoeff(A, n)}
(PARI) {a(n)=local(A=1+x); for(i=1, n, A=sum(m=0, n, x^m/m!*prod(k=1, m, 1+k*A+x*O(x^n)))); n!*polcoeff(A, n)}
CROSSREFS
Sequence in context: A160940 A346649 A355780 * A193435 A132572 A069247
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jul 21 2011
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.)