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!)
A352008 a(0) = 1; a(n) = Sum_{k=0..floor((n-1)/2)} 4^k * a(k) * a(n-2*k-1). 2
1, 1, 1, 5, 9, 29, 65, 437, 953, 3981, 10097, 49829, 123241, 516349, 1400737, 10203285, 24698905, 111642477, 304787665, 1704790917, 4392726473, 19951366877, 56296655617, 336083829621, 878995865721, 3974885167949, 11362790432305, 60789762148453, 165051865924137 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
G.f. A(x) satisfies: A(x) = 1 / (1 - x * A(4*x^2)).
MATHEMATICA
a[0] = 1; a[n_] := a[n] = Sum[4^k a[k] a[n - 2 k - 1], {k, 0, Floor[(n - 1)/2]}]; Table[a[n], {n, 0, 28}]
nmax = 28; A[_] = 0; Do[A[x_] = 1/(1 - x A[4 x^2]) + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
CROSSREFS
Sequence in context: A191013 A193487 A006131 * A270595 A303988 A242329
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Feb 28 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 22:17 EDT 2024. Contains 371964 sequences. (Running on oeis4.)