OFFSET
0,4
COMMENTS
Triangle T(n,k), 0 <= k <= n, read by rows, given by [1, 1, 0, 0, 0, 0, 0, 0, 0, ...] DELTA [1, 1, 0, 0, 0, 0, 0, 0, 0, ...] where DELTA is the operator defined in A084938. - Philippe Deléham, Aug 10 2005
T(n,k) is the number of nonempty bit strings with n bits and exactly k 1's over all strings in the sequence. For example, T(2,1)=4 because we have {(01)},{(10)},{(0),(1)},{(1),(0)}. - Geoffrey Critzer, Apr 06 2013
LINKS
FORMULA
a(n,k) = 2^(n-1)*C(n, k), for n>0.
G.f.: A(x, y)=(1-x-xy)/(1-2x-2xy).
EXAMPLE
Triangle begins:
1;
1, 1;
2, 4, 2;
4, 12, 12, 4;
8, 32, 48, 32, 8;
...
MATHEMATICA
nn=10; f[list_]:=Select[list, #>0&]; a=(x+y x)/(1-(x+y x)); Map[f, CoefficientList[Series[1/(1-a), {x, 0, nn}], {x, y}]]//Grid (* Geoffrey Critzer, Apr 06 2013 *)
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Christian G. Bower, May 16 2000
STATUS
approved