|
Search: id:A122934
|
|
|
| A122934 |
|
Triangle T(n,k) = number of partitions of n into k parts, with each part size divisible by the next. |
|
+0 6
|
|
| 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 2, 1, 1, 1, 3, 2, 2, 1, 1, 1, 1, 3, 2, 2, 1, 1, 1, 3, 2, 4, 2, 2, 1, 1, 1, 2, 4, 2, 4, 2, 2, 1, 1, 1, 3, 4, 5, 3, 4, 2, 2, 1, 1, 1, 1, 3, 4, 5, 3, 4, 2, 2, 1, 1, 1, 5, 4, 6, 5, 6, 3, 4, 2, 2, 1, 1, 1, 1, 5, 4, 6, 5, 6, 3, 4, 2, 2, 1, 1, 1, 3, 4, 7, 6, 7, 6, 6, 3, 4, 2, 2, 1, 1
(list; table; graph; listen)
|
|
|
OFFSET
|
1,8
|
|
|
FORMULA
|
T(n,1) = 1. T(n,k+1) = Sum_{d|n, d<n} T(n/d-1,k) = Sum_{d|n, d>1} T(d-1,k).
|
|
EXAMPLE
|
Table starts 1; 1,1; 1,1,1; 1,2,1,1; 1,1,2,1,1; 1,3,2,2,1,1; ...
T(6,3) = 2 because of the 3 partitions of 6 into 3 parts, [4,1,1] and [2,2,2] meet the definition; [3,2,1] fails because 2 does not divide 3.
|
|
CROSSREFS
|
Columns: A057427, A032741, A049822, A121895; row sums A003238.
Sequence in context: A078470 A151683 A133912 this_sequence A072170 A056624 A093997
Adjacent sequences: A122931 A122932 A122933 this_sequence A122935 A122936 A122937
|
|
KEYWORD
|
easy,nonn,tabl
|
|
AUTHOR
|
Franklin T. Adams-Watters (FrankTAW(AT)Netscape.net), Sep 20 2006
|
|
|
Search completed in 0.002 seconds
|