OFFSET
1,1
LINKS
Thomas Grubb and Frederick Rajasekaran, Set Partition Patterns and the Dimension Index, arXiv:2009.00650 [math.CO], 2020. Mentions this sequence.
FORMULA
EXAMPLE
T(4,2)=4 because we have 0100,0101,1100 and 1101.
Triangle starts:
2;
1,3;
2,2,4;
4,4,3,5;
8,8,6,4,6;
MAPLE
T:=proc(n, k) if k<n then k*2^(n-k-1) elif k=n then n+1 else 0 fi end: for n from 1 to 13 do seq(T(n, k), k=1..n) od; # yields sequence in triangular form;
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Emeric Deutsch, Jul 16 2006
STATUS
approved