OFFSET
0,3
REFERENCES
N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
LINKS
I. A. Blake and A. G. Konheim, Big buckets are (are not) better!, J. ACM, 24 (1977), 591-606.
FORMULA
Reference gives recurrences.
Reference gives recurrences (see Mathematica code).
MATHEMATICA
T[k_, m_] := T[k, m] = If[m <= k, 1, Module[{n = Quotient[m, k]}, Sum[Binomial[m - 1, k i - 1] i T[k, k i - 1] T[k, m - k i], {i, 1, n}] + If[n k == m, 0, (n + 1)T[k, m - 1]]]]
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
EXTENSIONS
More terms and better description from Reiner Martin, Feb 08 2002
STATUS
approved