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.

A227469 a(n) = binomial((n+1)^2, n) * (2*n+1) / (n+1)^2 for n>=0.

Original entry on oeis.org

1, 3, 20, 245, 4554, 115192, 3709992, 145597545, 6750522350, 361424043596, 21958844607336, 1493260499980119, 112400273159533800, 9279595605913516080, 833858283261973732944, 81027308003810095983825, 8466793463341565312119830, 946776552967215128481968260, 112816032067073649248569919400
Offset: 0

Views

Author

Paul D. Hanna, Aug 23 2013

Keywords

Examples

			G.f.: A(x) = 1 + 3*x + 20*x^2 + 245*x^3 + 4554*x^4 + 115192*x^5 +...
		

Crossrefs

Cf. A143669.

Programs

  • PARI
    {a(n)=binomial((n+1)^2,n)*(2*n+1)/(n+1)^2}
    for(n=0,20,print1(a(n),", "))

Formula

a(n) = (2*n+1)*A143669(n).