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!)
A249789 E.g.f. A(x) satisfies: (A(x)^2 - 4*x)^4 = (2 - A(x)^4)^2. 3
1, 1, -3, 9, -87, 705, -10395, 144585, -2851695, 56867265, -1413148275, 36699287625, -1106370671175, 35311847796225, -1256361047016075, 47461118535455625, -1950838291460433375, 84992806074321770625, -3968100259495356859875, 195665521053499007135625 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
E.g.f.: (1 + 4*x*sqrt(1-4*x^2))^(1/4).
E.g.f.: (1 + 4*Series_Reversion(G(x)))^(1/4), where G(x) = ((1+4*x)^(1/2) - (1-4*x)^(1/2))/4.
E.g.f. A(x) satisfies:
(1) A(x)^4 + A(-x)^4 = 2.
(2) A(x)^2 - A(-x)^2 = 4*x.
(3) x = (A(x)^2 - (2 - A(x)^4)^(1/2))/4.
a(n) ~ (-1)^(n+1) * 2^(3*n/2-1/4) * n^(n-1) / exp(n). - Vaclav Kotesovec, Nov 15 2014
a(n+4) = 3*(2*n+5)*(2*n+3)*a(n+2)-8*(2*n+3)*(2*n-1)*(n+2)*(n+1)*a(n). - Robert Israel, May 15 2017
EXAMPLE
E.g.f.: A(x) = 1 + x - 3*x^2/2! + 9*x^3/3! - 87*x^4/4! + 705*x^5/5! - 10395*x^6/6! + 144585*x^7/7! - 2851695*x^8/8! + 56867265*x^9/9! +...
Related series.
A(x)^2 = 1 + 2*x - 2*x^2 - 2*x^4 - 4*x^6 - 10*x^8 - 28*x^10 - 84*x^12 +...
A(x)^4 = 1 + 4*x - 8*x^3 - 8*x^5 - 16*x^7 - 40*x^9 - 112*x^11 - 336*x^13 +...
MAPLE
f:= gfun:-rectoproc({a(n+4) = (3*(2*n+5))*(2*n+3)*a(n+2)-(8*(2*n+3))*(2*n-1)*(n+2)*(n+1)*a(n), a(0)=1, a(1)=1, a(2)=-3, a(3)=9}, a(n), remember):
map(f, [$0..30]); # Robert Israel, May 15 2017
MATHEMATICA
CoefficientList[Series[(1 + 4*x*Sqrt[1-4*x^2])^(1/4), {x, 0, 20}], x] * Range[0, 20]! (* Vaclav Kotesovec, Nov 15 2014 *)
PROG
(PARI) a(n)=local(X=x+x^2*O(x^n), A=(1 + 4*X*sqrt(1-4*X^2))^(1/4)); n!*polcoeff(A, n)
for(n=0, 25, print1(a(n), ", "))
CROSSREFS
Sequence in context: A326159 A203559 A184098 * A067210 A018654 A003225
KEYWORD
sign
AUTHOR
Paul D. Hanna, Nov 15 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 24 18:17 EDT 2024. Contains 371962 sequences. (Running on oeis4.)