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.

A107883 Column 3 of triangle A107880.

Original entry on oeis.org

1, 2, 9, 61, 550, 6195, 83837, 1326923, 24078588, 493309850, 11271757335, 284379843234, 7856320956198, 235986714918110, 7660827258318780, 267365373971139600, 9985779421324740445, 397508459931685273305
Offset: 0

Views

Author

Paul D. Hanna, Jun 04 2005

Keywords

Examples

			1 = 1*(1-x)^2 + 2*x*(1-x)^5 + 9*x^2*(1-x)^9 +
61*x^3*(1-x)^14 + 550*x^4*(1-x)^20 + 6195*x^5*(1-x)^27 +...
		

Crossrefs

Programs

  • Mathematica
    a[ n_, k_: 0, j_: 2] := If[n < 1, Boole[n >= 0], a[ n, k, j] = Sum[ a[ n - 1, i, j + 1], {i, k + j}]]; (* Michael Somos, Nov 26 2016 *)
  • PARI
    {a(n)=polcoeff(1-sum(k=0,n-1,a(k)*x^k*(1-x+x*O(x^n))^((k+2)*(k+3)/2-1)),n)}

Formula

G.f.: 1 = Sum_{k>=0} a(k)*x^k*(1-x)^((k+2)*(k+3)/2 - 1).