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.

A167892 a(n) = Sum_{k=1..n} Catalan(k)^2.

Original entry on oeis.org

1, 5, 30, 226, 1990, 19414, 203455, 2248355, 25887399, 307993015, 3763786811, 47032778955, 598933188955, 7751562502555, 101741582076580, 1351906409905480, 18159677984049580, 246298405721739580, 3369517588450715680, 46457194476711692080
Offset: 1

Views

Author

Alexander Adamchuk, Nov 15 2009

Keywords

Comments

CatalanNumber(k) = (2k)!/(k!*(k+1)!) = binomial(2k,k)/(k+1).

Crossrefs

Programs

  • Magma
    [&+[Catalan(i)^2: i in [1..n]]: n in [1..20]]; // Vincenzo Librandi, Jul 01 2016
  • Mathematica
    Array[n \[Function] Sum[CatalanNumber[k]^2, {k, 1, n}], 20] (* J. Mulder (jasper.mulder(AT)planet.nl), Jan 25 2010 *)
    Accumulate[CatalanNumber[Range[1, 20]]^2] (* Vincenzo Librandi, Jul 01 2016 *)

Formula

a(n) = Sum_{k=1..n} Catalan(k)^2.
a(n) = Sum_{k=1..n} ((2k)!/(k!*(k+1)!))^2.
a(n) = Sum_{k=1..n} A000108(k)^2.
a(n) = Sum_{k=1..n} A001246(k).
a(n) = A094639(n) - 1.
G.f.: (Hypergeometric2F1(-1/2,-1/2,1,16*x) - 4*x - 1)/(4*x*(1 - x)). - Ilya Gutkovskiy, Jul 01 2016

Extensions

More terms from J. Mulder (jasper.mulder(AT)planet.nl), Jan 25 2010