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!)
A352044 a(0) = 1; a(n) = Sum_{k=0..floor((n-1)/2)} binomial(n-1,2*k) * a(k). 3
1, 1, 1, 2, 4, 8, 16, 33, 71, 159, 367, 864, 2058, 4934, 11870, 28608, 69020, 166652, 402748, 974464, 2361416, 5733656, 13954488, 34054016, 83351472, 204659440, 504162416, 1246065920, 3089752480, 7685498976, 19174255584, 47971104769, 120326714335 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
G.f. A(x) satisfies: A(x) = 1 + x * A(x^2/(1 - x)^2) / (1 - x).
E.g.f.: Integral exp(x) * Sum_{n>=0} a(n) * x^(2*n) / (2*n)! dx.
MATHEMATICA
a[0] = 1; a[n_] := a[n] = Sum[Binomial[n - 1, 2 k] a[k], {k, 0, Floor[(n - 1)/2]}]; Table[a[n], {n, 0, 32}]
nmax = 32; A[_] = 0; Do[A[x_] = 1 + x A[x^2/(1 - x)^2]/(1 - x) + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
CROSSREFS
Sequence in context: A110334 A357904 A084636 * A161869 A210541 A275545
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Mar 01 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 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)