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!)
A357308 a(0) = a(1) = 0, a(2) = 1; a(n) = a(n-1) + Sum_{k=0..n-3} a(k) * a(n-k-3). 4
0, 0, 1, 1, 1, 1, 1, 2, 4, 7, 11, 16, 24, 39, 67, 116, 196, 324, 534, 892, 1516, 2601, 4463, 7630, 13022, 22276, 38286, 66084, 114328, 197929, 342783, 594218, 1031794, 1794944, 3127450, 5455272, 9523812, 16640542, 29102938, 50951070, 89289998, 156616648, 274923328, 482945930, 848972814 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,8
LINKS
FORMULA
G.f. A(x) satisfies: A(x) = x^2 * (1 + x * A(x)^2) / (1 - x).
MATHEMATICA
a[0] = a[1] = 0; a[2] = 1; a[n_] := a[n] = a[n - 1] + Sum[a[k] a[n - k - 3], {k, 0, n - 3}]; Table[a[n], {n, 0, 44}]
nmax = 44; A[_] = 0; Do[A[x_] = x^2 (1 + x A[x]^2)/(1 - x) + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
CROSSREFS
Sequence in context: A063676 A099385 A331387 * A357933 A237821 A120118
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Sep 23 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 May 12 00:47 EDT 2024. Contains 372431 sequences. (Running on oeis4.)