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!)
A336009 a(0) = ... = a(3) = 1; a(n) = Sum_{k=0..n-4} binomial(n-4,k) * a(k) * a(n-k-4). 2
1, 1, 1, 1, 1, 2, 4, 8, 16, 34, 82, 226, 678, 2108, 6892, 23948, 88532, 344816, 1401200, 5925000, 26146360, 120743496, 582606552, 2926675112, 15259183112, 82458502624, 461577781968, 2674216518016, 16013654472352, 98968416103968, 630595248710144 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,6
COMMENTS
Shifts 4 places left when e.g.f. is squared.
LINKS
FORMULA
E.g.f. A(x) satisfies: A(x) = 1 + x + x^2/2 + x^3/6 + Integral( Integral( Integral( Integral A(x)^2 dx) dx) dx) dx.
MATHEMATICA
a[0] = a[1] = a[2] = a[3] = 1; a[n_] := a[n] = Sum[Binomial[n - 4, k] a[k] a[n - k - 4], {k, 0, n - 4}]; Table[a[n], {n, 0, 30}]
nmax = 30; A[_] = 0; Do[A[x_] = 1 + x + x^2/2 + x^3/6 + Integrate[Integrate[Integrate[Integrate[A[x]^2, x], x], x], x] + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x] Range[0, nmax]!
CROSSREFS
Sequence in context: A209971 A308031 A166354 * A180207 A013025 A034339
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 September 15 11:45 EDT 2024. Contains 375938 sequences. (Running on oeis4.)