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.

A179433 Column 1 of triangle A179430.

Original entry on oeis.org

1, 9, 405, 121500, 247203171, 3543210805275, 373203783345533355, 299059356226224581923626, 1870707073035678423776605220985, 93075349691648156957700437094276630105
Offset: 0

Views

Author

Paul D. Hanna, Jul 21 2010

Keywords

Comments

T=A179430 is a triangular matrix where column 0 of T^m equals C(m*3^(n-1), n) at row n for n>=0, m>=0.

Examples

			G.f.: A(x) = 1 + 9*x + 405*x^2 + 121500*x^3 + 247203171*x^4 +...
		

Crossrefs

Programs

  • PARI
    {a(n)=local(M=matrix(n+2, n+2, r, c, binomial(r*3^(c-2), c-1)), P); P=matrix(n+2, n+2, r, c, binomial((r+1)*3^(c-2), c-1)); (P~*M~^-1)[n+2, 2]}