Ok, I created a table
Table[j, {i, 4}, {j, 3}] // TableForm
and the result is fine, from 1-4 in each column. Now, what if I wanted to extend this table into something that looks like this:
Table[{something, Table[{i, j}, {j, 1, 8, 1}]}, {i, 1, 4, 1}] // TableForm
only without that something written in the front of every row. I wrote it because I don't know Mathematica enough to do it any other way. But this second Table is what I want, I want it to look like that, without that "something". It is not a big problem, if I can't get rid of that but I would be happy to...
The other thing is, I want to export it to a .txt or .dat file that would not have all those {{soidn,soig},{ig,irg}} brackets inside.
How can I do that?


