Re: List:{1}, {2,3},{4,5,6}....
- To: mathgroup at smc.vnet.net
- Subject: [mg129420] Re: List:{1}, {2,3},{4,5,6}....
- From: Ray Koopman <koopman at sfu.ca>
- Date: Fri, 11 Jan 2013 22:27:44 -0500 (EST)
- Delivered-to: l-mathgroup@mail-archive0.wolfram.com
- Delivered-to: l-mathgroup@wolfram.com
- Delivered-to: mathgroup-newout@smc.vnet.net
- Delivered-to: mathgroup-newsend@smc.vnet.net
- References: <kcntv4$f8h$1@smc.vnet.net>
On Jan 10, 6:38 pm, hknetman <hknet... at hotmail.com> wrote: > I use the command > list = Table[i + 1, {n, 1, 5}, {i, n (n - 1)/2, n (n - 1)/2 + n - 1}] > to get the following result: > {{1}, {2, 3}, {4, 5, 6}, {7, 8, 9, 10}, {11, 12, 13, 14, 15}} > > Is there any better method? > > Thanks a lot. k = 0; Table[++k,{i,m},{j,i}] is both clearer and shorter than both my previous suggestions.