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!)
A351128 G.f. A(x) satisfies: A(x) = x + x^2 * A(x/(1 - 4*x)) / (1 - 4*x). 4
0, 1, 0, 1, 8, 49, 280, 1649, 10800, 81505, 696400, 6472033, 63562872, 652984977, 7026210728, 79547049681, 949709767904, 11936248012993, 157219119485216, 2159448120457409, 30811324011852136, 455635009201780977, 6975424580445456056, 110478282815356437809 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,5
COMMENTS
Shifts 2 places left under 4th-order binomial transform.
LINKS
FORMULA
a(0) = 0, a(1) = 1; a(n) = Sum_{k=0..n-2} binomial(n-2,k) * 4^k * a(n-k-2).
MATHEMATICA
nmax = 23; A[_] = 0; Do[A[x_] = x + x^2 A[x/(1 - 4 x)]/(1 - 4 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] 4^k a[n - k - 2], {k, 0, n - 2}]; Table[a[n], {n, 0, 23}]
CROSSREFS
Sequence in context: A026719 A026774 A089383 * A200660 A028443 A001108
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 19 12:14 EDT 2024. Contains 371792 sequences. (Running on oeis4.)