The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A348957 G.f. A(x) satisfies A(x) = (1 + x * A(-x)) / (1 - x * A(x)). 3
1, 2, 2, 10, 18, 98, 210, 1194, 2786, 16258, 39906, 236938, 601458, 3615330, 9399858, 57024426, 150947010, 922283522, 2475603138, 15212318730, 41290579410, 254909413218, 698230131858, 4327273358250, 11943274468770, 74260741616514, 206279837823650, 1286199407132554 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(0) = 1; a(n) = -(-1)^n * a(n-1) + Sum_{k=0..n-1} a(k) * a(n-k-1).
a(n) ~ c * 3^(3*n/4) * (1 + sqrt(3))^n / (sqrt(2*Pi) * n^(3/2) * 2^(n/2)), where c = 3^(1/4) if n is even and c = (1 + sqrt(3))/sqrt(2) if n is odd. - Vaclav Kotesovec, Nov 14 2021
From Alexander Burstein, Nov 26 2021: (Start)
G.f.: A(-x) = 1/A(x).
G.f.: A(x) = 1 + x*(1+A(x)^3)/A(x). (End)
a(n) = (-1)^(n-1) * (1/n) * Sum_{k=0..n} binomial(n,k) * binomial(2*n-3*k-2,n-1) for n > 0. - Seiichi Manyama, Apr 11 2024
MATHEMATICA
nmax = 27; A[_] = 0; Do[A[x_] = (1 + x A[-x])/(1 - x A[x]) + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
a[0] = 1; a[n_] := a[n] = -(-1)^n a[n - 1] + Sum[a[k] a[n - k - 1], {k, 0, n - 1}]; Table[a[n], {n, 0, 27}]
CoefficientList[y/.AsymptoticSolve[y-y^2+x(1+y^3)==0, y->1, {x, 0, 27}][[1]], x] - Alexander Burstein, Nov 26 2021
CROSSREFS
Sequence in context: A294755 A102446 A372021 * A303565 A291856 A358996
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Nov 05 2021
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 May 12 18:22 EDT 2024. Contains 372494 sequences. (Running on oeis4.)