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!)
A349011 G.f. A(x) satisfies: A(x) = (1 - x * A(-x)) / (1 - 2 * x * A(x)). 1
1, 1, 5, 17, 105, 433, 2925, 13185, 93425, 443009, 3233205, 15840209, 117950745, 591187953, 4466545245, 22766535297, 173906505825, 897941153665, 6918379345125, 36089242700049, 279988660639305, 1472715584804529, 11490841104036045, 60857608450349313, 477104721264920145 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(0) = 1; a(n) = (-1)^n * a(n-1) + 2 * Sum_{k=0..n-1} a(k) * a(n-k-1).
MAPLE
A349011 := proc(n)
option remember ;
if n = 0 then
1;
else
(-1)^n*procname(n-1)+2*add(procname(k)*procname(n-k-1), k=0..n-1) ;
end if;
end proc:
seq(A349011(n), n=0..40) ; # R. J. Mathar, Aug 19 2022
MATHEMATICA
nmax = 24; A[_] = 0; Do[A[x_] = (1 - x A[-x])/(1 - 2 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] + 2 Sum[a[k] a[n - k - 1], {k, 0, n - 1}]; Table[a[n], {n, 0, 24}]
CROSSREFS
Sequence in context: A200992 A034821 A158007 * A143562 A261425 A297476
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 April 19 14:10 EDT 2024. Contains 371792 sequences. (Running on oeis4.)