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!)
A309996 Number of forests of rooted identity trees with 2n colored nodes using exactly n colors. 2
1, 1, 60, 10746, 4191916, 2894100710, 3128432924009, 4887094401176148, 10429904418286375276, 29174096160751011237987, 103602945849963939278211780, 455474137757927866858846385930, 2428879210633773939611859814825540, 15447942216555014401018067561180236424 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = A256068(2n+1,n).
MAPLE
b:= proc(n, k) option remember; `if`(n<2, n, add(b(n-j, k)*add(b(d, k)
*k*d*(-1)^(j/d+1), d=numtheory[divisors](j)), j=1..n-1)/(n-1))
end:
a:= n-> add(b(2*n+1, n-i)*(-1)^i*binomial(n, i), i=0..n):
seq(a(n), n=0..15);
MATHEMATICA
b[n_, k_] := b[n, k] = If[n < 2, n, Sum[b[n - j, k]*Sum[b[d, k]*k*d*(-1)^(j/d+1), {d, Divisors[j]}], {j, 1, n-1}]/(n-1)];
a[n_] := Sum[b[2*n+1, n-i]*(-1)^i*Binomial[n, i], {i, 0, n}];
Table[a[n], {n, 0, 15}] (* Jean-François Alcover, Sep 15 2022, after Alois P. Heinz *)
CROSSREFS
Cf. A256068.
Sequence in context: A146498 A003750 A001525 * A146513 A269883 A251991
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Aug 26 2019
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 April 18 22:18 EDT 2024. Contains 371782 sequences. (Running on oeis4.)