The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A256006 Recurrence: a(n) = Sum_{k=0..n-1} a(k)*C(n+1,k), a(0)=1. 3
1, 1, 4, 29, 336, 5687, 132294, 4047969, 157601068, 7607093435, 445794008034, 31177310522789, 2564976392355144, 245223349515360543, 26959450820298057694, 3377267272710103354409, 478240674001176206987556, 76011318838172580152245187 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
The number of merger histories for n+1 distinct firms into one firm, where any number of firms may be merged at a time but mergers of two separate sets of firms never occur simultaneously. See MathStackExchange link. - William P. Orrick, Oct 28 2016
a(n) is the number of distinct labeled increasing trees of size n (see Wirtz at pages 4 - 5). - Stefano Spezia, Nov 13 2022
LINKS
FORMULA
a(n) ~ c * n^(2*n+8/3) / (2^n * exp(2*n)), where c = 4.001655169623968944922713533374039000521095549333460838578... .
E.g.f. A(x) satisfies A(x) = A'(x)*(exp(x) - 1 - x) + x (see Wirtz at page 7). - Stefano Spezia, Nov 13 2022
MATHEMATICA
nmax = 30; aa = ConstantArray[0, nmax+1]; aa[[1]] = 1; Do[aa[[n+1]]=Sum[Binomial[n+1, k]*aa[[k+1]], {k, 0, n-1}], {n, nmax}]; aa
CROSSREFS
Cf. A103996.
Sequence in context: A099700 A305636 A276728 * A137646 A231498 A168602
KEYWORD
nonn
AUTHOR
Vaclav Kotesovec, May 06 2015
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 June 7 02:59 EDT 2024. Contains 373140 sequences. (Running on oeis4.)