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!)
A333497 a(0) = a(1) = a(2) = 1; a(n) = Sum_{k=0..n-3} binomial(n-3,k) * a(k) * a(n-k-3). 3
1, 1, 1, 1, 2, 4, 8, 18, 48, 144, 456, 1560, 5808, 23184, 98160, 440832, 2101824, 10588608, 56104128, 312013440, 1818498816, 11082682368, 70467474816, 466680045312, 3214497245184, 22994283345408, 170573216656896, 1310482565462016, 10415453732637696 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,5
COMMENTS
Shifts 3 places left when e.g.f. is squared.
LINKS
FORMULA
E.g.f. A(x) satisfies: A(x) = 1 + x + x^2/2 + Integral( Integral( Integral A(x)^2 dx) dx) dx.
MATHEMATICA
a[0] = a[1] = a[2] = 1; a[n_] := a[n] = Sum[Binomial[n - 3, k] a[k] a[n - k - 3], {k, 0, n - 3}]; Table[a[n], {n, 0, 28}]
nmax = 28; A[_] = 0; Do[A[x_] = 1 + x + x^2/2 + Integrate[Integrate[Integrate[A[x]^2, x], x], x] + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x] Range[0, nmax]!
CROSSREFS
Sequence in context: A369386 A034766 A099785 * A367115 A166952 A135422
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Jul 04 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 April 18 18:49 EDT 2024. Contains 371781 sequences. (Running on oeis4.)