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!)
A345104 a(n) = 1 + 2 * Sum_{k=0..n-1} binomial(n-1,k) * a(k) * a(n-k-1). 1
1, 3, 13, 89, 825, 9601, 134185, 2188353, 40788745, 855303265, 19927758377, 510728051073, 14279388168137, 432505475357729, 14107767947949289, 493046896702987841, 18380057918926012809, 728005164671113691105, 30531323352522247757225, 1351567976217998536472833 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
E.g.f. A(x) satisfies: A'(x) = 2 * A(x)^2 + exp(x).
MATHEMATICA
a[n_] := a[n] = 1 + 2 Sum[Binomial[n - 1, k] a[k] a[n - k - 1], {k, 0, n - 1}]; Table[a[n], {n, 0, 19}]
nmax = 19; A[_] = 1; Do[A[x_] = Normal[Integrate[2 A[x]^2 + Exp[x], x] + O[x]^(nmax + 1)], nmax]; CoefficientList[A[x], x] Range[0, nmax]!
CROSSREFS
Sequence in context: A324028 A097711 A114477 * A116434 A174290 A034513
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Jun 08 2021
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 29 09:10 EDT 2024. Contains 372106 sequences. (Running on oeis4.)