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!)
A331404 a(0) = 1; a(n) = Sum_{k=1..n} (-1)^(n - k) * binomial(n,k) * a(k-1) * a(n-k). 0
1, 1, -1, -7, 19, 229, -1009, -17263, 105211, 2332141, -18148681, -494079367, 4678377859, 151026527989, -1684778524129, -62909200846303, 807879476432971, 34252260613710781, -497629527847938361, -23615390533271153527, 382915997208515638099, 20108383384185058286149 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
MATHEMATICA
a[n_] := a[n] = Sum[(-1)^(n - k) Binomial[n, k] a[k - 1] a[n - k], {k, 1, n}]; a[0] = 1; Table[a[n], {n, 0, 21}]
PROG
(PARI) seq(n)={my(a=vector(n+1)); a[1]=1; for(n=1, #a-1, a[1+n]=sum(k=1, n, (-1)^(n - k) * binomial(n, k) * a[k] * a[1+n-k])); a} \\ Andrew Howroyd, Jan 16 2020
CROSSREFS
Sequence in context: A107195 A201479 A228150 * A191624 A221740 A364572
KEYWORD
sign
AUTHOR
Ilya Gutkovskiy, Jan 16 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 March 29 00:26 EDT 2024. Contains 371264 sequences. (Running on oeis4.)