cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A127127 Column 0 of triangle A127126.

Original entry on oeis.org

1, 1, 3, 13, 77, 587, 5484, 60582, 771261, 11102828, 178144861, 3149976426, 60825085447, 1273060083700, 28700081677767, 693217471426114, 17857152401368800, 488620956679818191, 14152040894854881662, 432509671322583878614, 13908794132963653028146
Offset: 0

Views

Author

Paul D. Hanna, Jan 05 2007

Keywords

Comments

For n > 0, equals one-half of the row sums of triangle A127126.

Crossrefs

Programs

  • 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 *)