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.

A228332 Let h(m) denote the sequence whose n-th term is Sum_{k=0..n} (k+1)^m*T(n,k)^2, where T(n,k) is the Catalan triangle A039598. This is h(6).

Original entry on oeis.org

1, 68, 1778, 43080, 958430, 20119736, 405350788, 7921691280, 151231519350, 2834134359000, 52320693313020, 953960351550960, 17212782834351468, 307826474156801840, 5462948893700675720, 96303960593503261984, 1687752152779483045542, 29424712141610821296408, 510621541414656188646220
Offset: 0

Views

Author

N. J. A. Sloane, Aug 26 2013

Keywords

Crossrefs

Programs

  • Mathematica
    Table[Sum[(k+1)^6*(Binomial[2n+1, n-k]*2*(k+1)/(n+k+2))^2,{k,0,n}],{n,0,20}] (* Vaclav Kotesovec, Dec 08 2013 *)

Formula

Recurrence: n*(2*n+1)*(105*n^5 - 420*n^4 + 588*n^3 - 356*n^2 + 96*n - 10)*a(n) = 2*(4*n-7)*(4*n-5)*(105*n^5 + 105*n^4 - 42*n^3 - 62*n^2 - 7*n + 3)*a(n-1). - Vaclav Kotesovec, Dec 08 2013
a(n) = binomial(4*n,2*n) * (105*n^5 + 105*n^4 - 42*n^3 - 62*n^2 - 7*n + 3) / ((2*n+1)*(4*n-3)*(4*n-1)). - Vaclav Kotesovec, Dec 08 2013