Logo

Greetings from The On-Line Encyclopedia of Integer Sequences!

Hints

Search: id:A144510
Displaying 1-1 of 1 results found. page 1
     Format: long | short | internal | text      Sort: relevance | references | number      Highlight: on | off
A144510 Array T(n,k) (n >= 1, k >= 0) read by downwards antidiagonals: T(n,k) = total number of partitions of [1, 2, ..., i] into exactly k nonempty blocks, each of size at most n, for any i in the range n <= i <= kn. +0
3
1, 1, 1, 1, 2, 1, 1, 7, 3, 1, 1, 37, 31, 4, 1, 1, 266, 842, 121, 5, 1, 1, 2431, 45296, 18252, 456, 6, 1, 1, 27007, 4061871, 7958726, 405408, 1709, 7, 1, 1, 353522, 546809243, 7528988476, 1495388159, 9268549, 6427, 8, 1, 1, 5329837, 103123135501, 13130817809439, 15467641899285 (list; table; graph; listen)
OFFSET

1,5

FORMULA

T(n,k) = (1/k!) Sum_{i_1 = 1 .. n} Sum_{i_2 = 1 .. n} ... Sum_{i_k = 1 .. n} Multinomial( i_1+i_2+...+i_k; i_1, i_2, ..., i_k).

EXAMPLE

Array begins:

1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, ...

1, 2, 7, 37, 266, 2431, 27007, 353522, 5329837, ...

1, 3, 31, 842, 45296, 4061871, 546809243, 103123135501, ...

1, 4, 121, 18252, 7958726, 7528988476, 13130817809439, ...

1, 5, 456, 405408, 1495388159, 15467641899285, 361207016885536095, ...

1, 6, 1709, 9268549, 295887993624, 34155922905682979, 10893033763705794846727, ...

...

MAPLE

b := proc(n, i, k) local r;

option remember;

if n = i then 1;

elif i < n then 0;

elif n < 1 then 0;

else add( binomial(i-1, r)*b(n-1, i-1-r, k), r=0..k);

end if;

end proc;

T:=proc(n, k); add(b(n, i, k), i=0..(k+1)*n); end proc;

CROSSREFS

For the transposed array see A144512.

Rows include A001515, A144416, A144508, A144509.

Columns include A048775, A144511.

Sequence in context: A094262 A123554 A025270 this_sequence A143670 A005450 A039760

Adjacent sequences: A144507 A144508 A144509 this_sequence A144511 A144512 A144513

KEYWORD

nonn,tabl

AUTHOR

David Applegate and N. J. A. Sloane (njas(AT)research.att.com), Dec 15 2008, Jan 30 2009

page 1

Search completed in 0.002 seconds

Lookup | Welcome | Find friends | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
More pages | Superseeker | Maintained by N. J. A. Sloane (njas@research.att.com)

Last modified December 17 23:40 EST 2009. Contains 171025 sequences.


AT&T Labs Research