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.

A127134 Central terms of triangle A127126; a(n) = A127126(2n,n).

Original entry on oeis.org

1, 2, 18, 284, 6680, 211398, 8439235, 407247048, 23056215138, 1498169721930, 109876657252604, 8976437481923520, 808257688877060396, 79516093326076500590, 8485004019719253675540, 976009472808194554659440
Offset: 0

Views

Author

Paul D. Hanna, Jan 05 2007

Keywords

Comments

a(n) is divisible by (n+1): a(n)/(n+1) = A127135(n).

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[2*n, n], {n,0,20}] (* G. C. Greubel, Jan 28 2020 *)