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!)
A352007 a(0) = 1; a(n) = Sum_{k=0..floor((n-1)/2)} 3^k * a(k) * a(n-2*k-1). 2
1, 1, 1, 4, 7, 19, 40, 178, 379, 1237, 2941, 10378, 24628, 78928, 198820, 813550, 1971907, 6587245, 16980079, 61488286, 155573011, 515316037, 1363261084, 4937498686, 12796438252, 42078038668, 113153315824, 390012381346, 1036020692356, 3379994401042, 9240830253940 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
G.f. A(x) satisfies: A(x) = 1 / (1 - x * A(3*x^2)).
MATHEMATICA
a[0] = 1; a[n_] := a[n] = Sum[3^k a[k] a[n - 2 k - 1], {k, 0, Floor[(n - 1)/2]}]; Table[a[n], {n, 0, 30}]
nmax = 30; A[_] = 0; Do[A[x_] = 1/(1 - x A[3 x^2]) + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
CROSSREFS
Sequence in context: A006130 A140167 A182228 * A182646 A190646 A220011
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 25 06:42 EDT 2024. Contains 371964 sequences. (Running on oeis4.)