login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A356292
Number of labeled trees on [n] that are centered.
2
1, 1, 0, 3, 4, 65, 726, 8617, 127688, 2374353, 50692330, 1198835561, 31297606572, 901114484569, 28449258421598, 976863784939785, 36199494609008656, 1438734246518372897, 61037354387458904274, 2753490065023053584713, 131645635680595606832180
OFFSET
0,4
COMMENTS
This is the labeled version of A000676 which has the pertinent definitions.
FORMULA
a(n) = Sum_{d even} A034854(n,d).
a(n) = A000272(n) - A355671(n)
MATHEMATICA
nn = 20; T = NestList[z Exp[#] &, z, nn]; G[k_, z_] := T[[k + 1]]; H[k_, z_] := T[[k + 1]] - T[[k]]; H[0, z_] := z; ReplacePart[ Sum[Range[0, nn]!CoefficientList[Series[G[m, z] (Exp[H[m, z]] - 1 - H[m, z]), {z, 0, nn}], z], {m, 0, nn/2 - 2}], {1 -> 1, 2 -> 1}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Geoffrey Critzer, Aug 02 2022
STATUS
approved