A153491 Triangle T(n,m)= 11*binomial(n,k) - 8 read by rows, 0<=k<=n.
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
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;
Links
- G. C. Greubel, Table of n, a(n) for n = 0..1034
Crossrefs
Cf. A131065
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
Comments