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!)
A243952 E.g.f. A(x) satisfies: A'(x) = A(x) - 1/A(x) + A(x)^3. 1
1, 1, 5, 29, 217, 2185, 27965, 424325, 7379185, 145153105, 3196294325, 77897895725, 2079802839625, 60350978376025, 1891418286217325, 63678498456207125, 2292013408161318625, 87825945807276510625, 3569447845239610305125, 153366779265711453624125 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
E.g.f. A(x) satisfies:
(1) A(x) = 1 + Series_Reversion( Integral (1+x)/(1 + 6*x + 7*x^2 + 4*x^3 + x^4) dx ).
(2) A(x) = exp(x + Integral A(x)^2 - 1/A(x)^2 dx).
(3) log(A(x)) = Series_Reversion( Integral 1/(1 + 2*sinh(2*x)) dx ).
(4) log(A(x)) = Series_Reversion( log( (sqrt(5)+2) * (Phi*exp(2*x) - 1)/(exp(2*x) + Phi) ) / (2*sqrt(5)) ) where Phi = (sqrt(5)+1)/2.
E.g.f.: sqrt(sqrt(5)-1+2*(sqrt(5)-2)*exp(2*sqrt(5)*x)) / sqrt(2+(3*sqrt(5)-7)*exp(2*sqrt(5)*x)). - Vaclav Kotesovec, Jun 27 2014
a(n) ~ 2^(n+1/2) * 5^(n/2+1/4) * n^n / ((log((7+3*sqrt(5))/2))^(n+1/2) * exp(n)). - Vaclav Kotesovec, Jun 27 2014
EXAMPLE
E.g.f.: A(x) = 1 + x + 5*x^2/2! + 29*x^3/3! + 217*x^4/4! + 2185*x^5/5! +...
Related expansions:
A(x)^3 = 1 + 3*x + 21*x^2/2! + 183*x^3/3! + 1977*x^4/4! + 25755*x^5/5! +...
1/A(x) = 1 - x - 3*x^2/2! - 5*x^3/3! + 9*x^4/4! - 25*x^5/5! - 2715*x^6/6! -...
A(x)^2 = 1 + 2*x + 12*x^2/2! + 88*x^3/3! + 816*x^4/4! + 9440*x^5/5! +...
1/A(x)^2 = 1 - 2*x - 4*x^2/2! + 8*x^3/3! + 112*x^4/4! + 160*x^5/5! -...
log(A(x)) = x + 4*x^2/2! + 16*x^3/3! + 80*x^4/4! + 704*x^5/5! + 9280*x^6/6! +...
PROG
(PARI) {a(n)=local(A=1+x+x*O(x^n)); for(i=1, n, A=exp(x+intformal(A^2-1/A^2+x*O(x^n)))); n!*polcoeff(A, n)}
for(n=0, 30, print1(a(n), ", "))
(PARI) {a(n)=local(A, X=x+x*O(x^n)); A=exp(serreverse(intformal(1/(1+2*sinh(2*X))))); n!*polcoeff(A, n)}
for(n=0, 30, print1(a(n), ", "))
(PARI) {a(n)=local(A=1+serreverse(intformal( (1+x)/(1 + 6*x + 7*x^2 + 4*x^3 + x^4 +x*O(x^n)) ))); n!*polcoeff(A, n)}
for(n=0, 25, print1(a(n), ", "))
CROSSREFS
Cf. A230008.
Sequence in context: A027048 A356408 A192463 * A094856 A057623 A356336
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jun 26 2014
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 25 06:35 EDT 2024. Contains 371964 sequences. (Running on oeis4.)