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.

A184357 a(n) = Sum_{k=0..n} C(n^2-k^2, n-k)*C(k^2, k).

Original entry on oeis.org

1, 2, 15, 226, 5079, 151326, 5611906, 248995090, 12862665297, 758353907422, 50255751919386, 3698524145800452, 299324750430958973, 26424096787968560864, 2527130527406877225450, 260305991718814269022586, 28732428200125730917353569
Offset: 0

Views

Author

Paul D. Hanna, Jan 15 2011

Keywords

Examples

			a(0) = 1 = 1*1;
a(1) = 2 = 1*1 + 1*1;
a(2) = 15 = 6*1 + 3*1 + 1*6;
a(3) = 226 = 84*1 + 28*1 + 5*6 + 1*84;
a(4) = 5079 = 1820*1 + 455*1 + 66*6 + 7*84 + 1*1820;
a(5) = 151326 = 53130*1 + 10626*1 + 1330*6 + 120*84 + 9*1820 + 1*53130; ...
		

Crossrefs

Programs

  • Mathematica
    Table[Sum[Binomial[n^2-k^2,n-k]Binomial[k^2,k],{k,0,n}],{n,0,20}] (* Harvey P. Dale, Jul 30 2023 *)
  • PARI
    {a(n)=if(n<0, 0, sum(k=0, n, binomial(n^2-k^2, n-k)*binomial(k^2, k)))}