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”).

A369592
Expansion of (1/x) * Series_Reversion( x / (1+x+x^4/(1+x)^3) ).
0
1, 1, 1, 1, 2, 3, 4, 5, 10, 16, 23, 31, 62, 102, 152, 213, 426, 712, 1084, 1556, 3112, 5255, 8116, 11843, 23686, 40288, 62866, 92842, 185684, 317548, 499376, 744277, 1488554, 2556376, 4044740, 6072124, 12144248, 20926236, 33272912, 50244660, 100489320, 173634752
OFFSET
0,5
COMMENTS
Number of ordered trees with n+1 edges, having nonroot nodes of outdegree 0 or 4. - Emanuele Munarini, Jun 20 2024
FORMULA
a(n) = (1/(n+1)) * Sum_{k=0..floor(n/4)} (n-4*k+1) * binomial(n+1,k).
PROG
(PARI) my(N=50, x='x+O('x^N)); Vec(serreverse(x/(1+x+x^4/(1+x)^3))/x)
(PARI) a(n) = sum(k=0, n\4, (n-4*k+1)*binomial(n+1, k))/(n+1);
CROSSREFS
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Jan 26 2024
STATUS
approved