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!)
A350456 G.f. A(x) satisfies: A(x) = 1 + x + x^2 * A(x/(1 + 2*x)) / (1 + 2*x). 4
1, 1, 1, -1, 1, -3, 17, -85, 385, -1767, 8929, -50633, 312705, -2036267, 13794417, -97295069, 717808897, -5549714767, 44868094145, -377741383697, 3298933836033, -29813463964115, 278462029910993, -2685972391332837, 26733375327601281, -274247228584531767 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,6
COMMENTS
Shifts 2 places left under 2nd-order inverse binomial transform.
LINKS
FORMULA
a(0) = a(1) = 1; a(n) = Sum_{k=0..n-2} binomial(n-2,k) * (-2)^k * a(n-k-2).
MATHEMATICA
nmax = 25; A[_] = 0; Do[A[x_] = 1 + x + x^2 A[x/(1 + 2 x)]/(1 + 2 x) + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
a[0] = a[1] = 1; a[n_] := a[n] = Sum[Binomial[n - 2, k] (-2)^k a[n - k - 2], {k, 0, n - 2}]; Table[a[n], {n, 0, 25}]
CROSSREFS
Sequence in context: A318769 A344228 A216681 * A037787 A037668 A119884
KEYWORD
sign
AUTHOR
Ilya Gutkovskiy, Feb 04 2022
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 July 28 04:17 EDT 2024. Contains 374674 sequences. (Running on oeis4.)