OFFSET
0,10
COMMENTS
LINKS
EXAMPLE
The top-left corner of the array:
row # row starts as
0 0, 0, 0, 0, 0, ...
1 1, 0, 0, 0, 0, ...
2 1, 1, 0, 0, 0, ...
3 2, 0, 0, 0, 0, ...
4 2, 2, 0, 0, 0, ...
5 1, 1, 1, 0, 0, ...
6 1, 2, 0, 0, 0, ...
7 3, 0, 0, 0, 0, ...
8 3, 3, 0, 0, 0, ...
9 1, 2, 2, 0, 0, ...
10 1, 1, 1, 1, 0, ...
11 2, 2, 2, 0, 0, ...
12 2, 3, 0, 0, 0, ...
13 1, 1, 2, 0, 0, ...
14 1, 3, 0, 0, 0, ...
15 4, 0, 0, 0, 0, ...
16 4, 4, 0, 0, 0, ...
17 1, 3, 3, 0, 0, ...
etc.
8 has binary expansion "1000", whose runlengths are [3,1] (the length of the run in the least significant end comes first) which maps to nonordered partition {3+3} as explained in A227183, thus row 8 begins as 3, 3, 0, 0, ...
17 has binary expansion "10001", whose runlengths are [1,3,1] which maps to nonordered partition {1,3,3}, thus row 17 begins as 1, 3, 3, ...
PROG
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Antti Karttunen, Jul 06 2013
STATUS
approved