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!)
A351028 G.f. A(x) satisfies: A(x) = x + x^2 * A(x/(1 - 2*x)) / (1 - 2*x). 4
0, 1, 0, 1, 4, 13, 44, 173, 792, 4009, 21608, 122761, 737340, 4696341, 31665076, 224846037, 1672266352, 12976252561, 104816144656, 880061135057, 7670326372532, 69286959112797, 647568753568636, 6251768635591613, 62255057942504968, 638658964709824185 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,5
COMMENTS
Shifts 2 places left under 2nd-order binomial transform.
LINKS
FORMULA
a(0) = 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_] = x + x^2 A[x/(1 - 2 x)]/(1 - 2 x) + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
a[0] = 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: A081197 A005490 A174299 * A285188 A192255 A035356
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Feb 03 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 April 25 09:30 EDT 2024. Contains 371967 sequences. (Running on oeis4.)