A241596 Partitions listed by alternately incrementing each part and appending a 1.
1, 2, 11, 3, 22, 21, 111, 4, 33, 32, 222, 31, 221, 211, 1111, 5, 44, 43, 333, 42, 332, 322, 2222, 41, 331, 321, 2221, 311, 2211, 2111, 11111, 6, 55, 54, 444, 53, 443, 433, 3333, 52, 442, 432, 3332, 422, 3322, 3222, 22222, 51, 441, 431, 3331, 421, 3321, 3221, 22221, 411, 3311, 3211, 22211, 3111, 22111, 21111, 111111
Offset: 1
Examples
The partitions appear in the following order: S_0 = 1, S_1 = 2, 11, S_2 = 3, 22, 21, 111, S_3 = 4, 33, 32, 222, 31, 221, 211, 1111, S_4 = 5, 44, 43, 333, 42, 332, 322, 2222, 41, 331, 321, 2221, 311, 2211, 2111, 11111, ...
References
- Arie Groeneveld, Posting to Sequence Fans List, May 19 2014
Links
- Alois P. Heinz, Rows n = 1..9, flattened
Crossrefs
Programs
-
Maple
b:= proc(n) option remember; `if`(n=1, [[1]], [map(x-> map(y-> y+1, x), b(n-1))[], map(x-> [x[], 1], b(n-1))[]]) end: T:= n-> map(x-> parse(cat(x[])), b(n))[]: seq(T(n), n=1..6);
Extensions
Typos corrected by Alois P. Heinz, Sep 25 2015
Comments