Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
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!)
A354738 a(0) = a(1) = 1; a(n) = (n-1) * Sum_{k=0..n-2} a(k) * a(n-k-2). 1
1, 1, 1, 4, 9, 40, 135, 636, 2688, 13552, 65871, 355520, 1906740, 10963656, 63468171, 386532944, 2383820820, 15294890848, 99626199832, 670333562352, 4583302104450, 32213942456000, 230118463761795, 1683896120829384, 12520330728001670, 95110075114630416 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
G.f. A(x) satisfies: A(x) = 1 + x + x^2 * A(x)^2 + 2 * x^3 * A(x) * A'(x).
MATHEMATICA
a[0] = a[1] = 1; a[n_] := a[n] = (n - 1) Sum[a[k] a[n - k - 2], {k, 0, n - 2}]; Table[a[n], {n, 0, 25}]
nmax = 25; A[_] = 0; Do[A[x_] = 1 + x + x^2 A[x]^2 + 2 x^3 A[x] D[A[x], x] + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
CROSSREFS
Sequence in context: A302179 A370603 A370602 * A073414 A085110 A374939
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Jun 04 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 August 18 20:14 EDT 2024. Contains 375274 sequences. (Running on oeis4.)