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!)
A273661 Number of forests of labeled rooted trees of height at most 1, with 2n labels, n of which are used for root nodes and any root may contain >= 1 labels. 2
1, 2, 30, 1040, 59850, 5020092, 568136184, 82506827832, 14838761544750, 3218688299529560, 824939949711312292, 245760625104930199992, 83971523217039191918912, 32541316683315808775379000, 14168363320559065768499122200, 6874922021593176730438764171840 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = (2n)!/n! * [x^n] Sum_{j=0..n} Stirling2(n,j)*exp(x)^j.
a(n) = C(2*n,n) * Sum_{j=0..n} Stirling2(2*n,j) * j^n.
a(n) = A143396(2n,n).
MAPLE
a:= n-> binomial(2*n, n)*add(Stirling2(n, j)*j^n, j=0..n):
seq(a(n), n=0..20);
MATHEMATICA
a[0] = 1; a[n_] := Binomial[2*n, n]*Sum[StirlingS2[n, j]*j^n, {j, 0, n}]; Table[a[n], {n, 0, 20}] (* Jean-François Alcover, Feb 27 2017, translated from Maple *)
CROSSREFS
Cf. A143396.
Sequence in context: A332231 A274389 A186292 * A322624 A338044 A350719
KEYWORD
nonn
AUTHOR
Alois P. Heinz, May 27 2016
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 6 17:17 EDT 2024. Contains 373133 sequences. (Running on oeis4.)