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!)
A336010 a(0) = ... = a(4) = 1; a(n) = Sum_{k=0..n-5} binomial(n-5,k) * a(k) * a(n-k-5). 2
1, 1, 1, 1, 1, 1, 2, 4, 8, 16, 32, 66, 148, 374, 1052, 3156, 9724, 31096, 104124, 366696, 1355624, 5220120, 20763160, 84944720, 357759200, 1557192440, 7029575320, 32929457880, 159764303320, 800509163360, 4132518624560, 21953331512080, 119966645509440 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,7
COMMENTS
Shifts 5 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 + x^4/24 + Integral( Integral( Integral( Integral( Integral A(x)^2 dx) dx) dx) dx) dx.
MATHEMATICA
a[0] = a[1] = a[2] = a[3] = a[4] = 1; a[n_] := a[n] = Sum[Binomial[n - 5, k] a[k] a[n - k - 5], {k, 0, n - 5}]; Table[a[n], {n, 0, 32}]
nmax = 32; A[_] = 0; Do[A[x_] = 1 + x + x^2/2 + x^3/6 + x^4/24 + Integrate[Integrate[Integrate[Integrate[Integrate[A[x]^2, x], x], x], x], x] + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x] Range[0, nmax]!
CROSSREFS
Sequence in context: A370340 A308032 A100138 * A180208 A100139 A274860
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.)