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!)
A307733 a(0) = a(1) = 1; a(n) = a(n-1) + a(n-2) + Sum_{k=0..n-1} a(k) * a(n-k-1). 1
1, 1, 4, 14, 54, 220, 934, 4090, 18344, 83850, 389214, 1829736, 8693962, 41685714, 201442188, 980091814, 4797070022, 23603701828, 116688837886, 579312087802, 2887020896016, 14437318756818, 72424982972862, 364366674463824, 1837954750285458 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
G.f. A(x) satisfies: A(x) = (1 - x + x*A(x)^2) / (1 - x - x^2).
G.f.: (1 - x - x^2 - sqrt(1 - 6*x + 3*x^2 + 2*x^3 + x^4)) / (2*x).
MATHEMATICA
a[0] = a[1] = 1; a[n_] := a[n] = a[n - 1] + a[n - 2] + Sum[a[k] a[n - k - 1], {k, 0, n - 1}]; Table[a[n], {n, 0, 24}]
nmax = 24; CoefficientList[Series[(1 - x - x^2 - Sqrt[1 - 6 x + 3 x^2 + 2 x^3 + x^4])/(2 x), {x, 0, nmax}], x]
CROSSREFS
Sequence in context: A363545 A302171 A366735 * A045501 A162481 A280208
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Jul 05 2020
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 March 29 05:48 EDT 2024. Contains 371265 sequences. (Running on oeis4.)