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.

A179434 Row sums of triangle A179430.

Original entry on oeis.org

1, 2, 13, 571, 172585, 357625693, 5248165593907, 566958191345077996, 465798195439736703244606, 2982999334066325867630228374270, 151658307264909973462110073089257457502
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.

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)); sum(k=0,n,(P~*M~^-1)[n+1, k+1])}