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.

A153491 Triangle T(n,m)= 11*binomial(n,k) - 8 read by rows, 0<=k<=n.

Original entry on oeis.org

3, 3, 3, 3, 14, 3, 3, 25, 25, 3, 3, 36, 58, 36, 3, 3, 47, 102, 102, 47, 3, 3, 58, 157, 212, 157, 58, 3, 3, 69, 223, 377, 377, 223, 69, 3, 3, 80, 300, 608, 762, 608, 300, 80, 3, 3, 91, 388, 916, 1378, 1378, 916, 388, 91, 3, 3, 102, 487, 1312
Offset: 0

Views

Author

Roger L. Bagula and Gary W. Adamson, Dec 27 2008

Keywords

Comments

Row sums are 3(n+1) + 11*(2^n - n - 1) = 3, 6, 20, 56, 136,...

Examples

			3;
3,3;
3,14,3;
3,25,25,3;
3,36,58,36,3;
3,47,102,102,47,3;
3,58,157,212,157,58,3;
3,69,223,377,377,223,69,3;
3,80,300,608,762,608,300,80,3;
		

Crossrefs

Programs

  • Mathematica
    T[n_, m_] = If[n == 1, 3, If[m == 0 || m == n, 3, 11*Binomial[n, k] - 8]]
    a1 = Table[Table[T[n, k], {k, 0, n}], {n, 0, 10}];
    Flatten[a1]

Extensions

Definition and terms regularized. - R. J. Mathar, Jul 11 2012