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

A127127
Column 0 of triangle A127126.
10
1, 1, 3, 13, 77, 587, 5484, 60582, 771261, 11102828, 178144861, 3149976426, 60825085447, 1273060083700, 28700081677767, 693217471426114, 17857152401368800, 488620956679818191, 14152040894854881662, 432509671322583878614, 13908794132963653028146
OFFSET
0,3
COMMENTS
For n > 0, equals one-half of the row sums of triangle A127126.
LINKS
MATHEMATICA
T[n_, k_]:= T[n, k]= If[k==n, 1, Coefficient[(1 +x*Sum[x^(r-k-1)*Sum[T[r, c], {c, k+1, r}], {r, k+1, n}] + x^(n+1))^(k+1), x, n-k]]; Table[T[n, 0], {n, 0, 20}] (* G. C. Greubel, Jan 28 2020 *)
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jan 05 2007
STATUS
approved