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!)
A351143 G.f. A(x) satisfies: A(x) = 1 + x^2 * A(x/(1 - 2*x)) / (1 - 2*x). 5
1, 0, 1, 2, 5, 16, 61, 258, 1177, 5776, 30537, 173394, 1050045, 6732608, 45459493, 322141106, 2390075249, 18525967328, 149684238801, 1257802518754, 10969260208565, 99100423076912, 926030783479629, 8937741026924450, 88988433270106249, 912906193294355952 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
COMMENTS
Shifts 2 places left under 2nd-order binomial transform.
LINKS
FORMULA
a(0) = 1, a(1) = 0; 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^2 A[x/(1 - 2 x)]/(1 - 2 x) + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
a[0] = 1; a[1] = 0; 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: A370797 A307228 A104858 * A303058 A322616 A178123
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Feb 02 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 August 11 21:40 EDT 2024. Contains 375073 sequences. (Running on oeis4.)