OFFSET
1,39
LINKS
P. C. P. Bhatt, An interesting way to partition a number, Inform. Process. Lett., 71, 1999, 141-148.
W. M. Y. Goh, P. Hitczenko and A. Shokoufandeh, s-partitions, Inform. Process. Lett., 82, 2002, 327-329.
FORMULA
G.f.: G(t,x) = -1+1/product(1-tx^(2^k-1), k=1..infinity).
EXAMPLE
T(9,3)=2 because we have [7,1,1] and [3,3,3].
MAPLE
g:=-1+1/product(1-t*x^(2^k-1), k=1..10): gser:=simplify(series(g, x=0, 20)): for n from 1 to 19 do P[n]:=sort(coeff(gser, x^n)) od: for n from 1 to 19 do seq(coeff(P[n], t^j), j=1..n) od; # yields sequence in triangular form
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Emeric Deutsch, Mar 06 2006
STATUS
approved