A099040 Riordan array (1, 2+2x).
1, 0, 2, 0, 2, 4, 0, 0, 8, 8, 0, 0, 4, 24, 16, 0, 0, 0, 24, 64, 32, 0, 0, 0, 8, 96, 160, 64, 0, 0, 0, 0, 64, 320, 384, 128, 0, 0, 0, 0, 16, 320, 960, 896, 256, 0, 0, 0, 0, 0, 160, 1280, 2688, 2048, 512, 0, 0, 0, 0, 0, 32, 960, 4480, 7168, 4608, 1024, 0, 0, 0, 0, 0, 0, 384, 4480, 14336, 18432, 10240, 2048
Offset: 0
Examples
Rows begin {1}, {0,2}, {0,2,4}, {0,0,8,8}, {0,0,4,24,16}, {0,0,0,24,64,32},... T(3,2)=8 because we have: 1+2,1+2',1'+2,1'+2',2+1,2+1',2'+1,2'+1' where a part of the second type is designated by '. - _Geoffrey Critzer_, Aug 18 2012
Links
- G. C. Greubel, Table of n, a(n) for the first 100 rows, flattened
Programs
-
Mathematica
nn = 8; CoefficientList[Series[1/(1 - 2 y x - 2 y x^2), {x, 0, nn}], {x, y}] // Grid (* Geoffrey Critzer, Aug 18 2012 *)
Formula
Number triangle T(n, k) = 2^k*binomial(k, n-k).
Columns have g.f. (2x+2x^2)^k.
T(n,k) = A026729(n,k)*2^k. - Philippe Deléham, Jul 28 2006
O.g.f.: 1/(1-2*y*x-2*y*x^2). - Geoffrey Critzer, Aug 18 2012.
Comments