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!)
A232690 E.g.f. satisfies: A(x) = exp( 1/A(x) * Integral A(x)^3 dx ). 5
1, 1, 2, 7, 33, 202, 1495, 13107, 132062, 1508629, 19227687, 270818542, 4173948097, 69906444393, 1263811926338, 24534217063999, 508951297964193, 11236656534791578, 263054502440239639, 6508910392250017611, 169727899004807970782, 4652123984505282141277, 133711980572082349859559 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Note that G(x) = exp(1/G(x) * Integral G(x)^2 dx) has negative coefficients.
Compare e.g.f. to: B(x) = exp( 1/B(x) * Integral B(x) dx ) where B(y) = Bessel polynomial y_n(-1) (cf. A000806).
LINKS
FORMULA
E.g.f.: sqrt(LambertW(-1,(4*x-3)*exp(-3))/(4*x-3)). - Vaclav Kotesovec, Jan 05 2014
Limit n->infinity (a(n)/n!)^(1/n) = 4/3. - Vaclav Kotesovec, Jan 05 2014
EXAMPLE
E.g.f.: A(x) = 1 + x + 2*x^2/2! + 7*x^3/3! + 33*x^4/4! + 202*x^5/5! +...
Related expansions:
log(A(x)) = x + x^2/2! + 3*x^3/3! + 11*x^4/4! + 61*x^5/5! + 393*x^6/6! +...
Integral A(x)^3 dx = x + 3*x^2/2! + 12*x^3/3! + 63*x^4/4! + 411*x^5/5! +...
1/A(x) = 1 - x - x^3/3! - x^4/4! - 12*x^5/5! - 41*x^6/6! - 451*x^7/7! -...
MAPLE
seq(n! * coeff(series(sqrt(LambertW(-1, (4*x-3)*exp(-3))/(4*x-3)), x, n+1), x, n), n=0..20); # Vaclav Kotesovec, Jan 05 2014
MATHEMATICA
CoefficientList[FullSimplify[Assuming[Element[x, Reals], Series[Sqrt[LambertW[-1, (4*x-3)*E^(-3)]/(4*x-3)], {x, 0, 20}]]], x] * Range[0, 20]! (* Vaclav Kotesovec, Jan 05 2014 *)
PROG
(PARI) {a(n)=local(A=1+x); for(i=1, n, A=exp(1/A*intformal(A^3+x*O(x^n)))); n!*polcoeff(A, n)}
for(n=0, 30, print1(a(n), ", "))
CROSSREFS
Sequence in context: A020103 A014623 A144005 * A143889 A350758 A241767
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Dec 06 2013
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.)