Okay, the section is on Tables, so I assume we want to use Table rather than threading or any other "fancy" stuff. The result should be a List of 20 Columns, so the general shape of the code will be something like this:
Table[Column[ ...], {i, ...}]
We can fill in the iterator bounds easily (it's 20):
Table[Column[ ...], {i, 20}]
Each Column should have a list like {n, n^2, n^3}
. I used i
for my iterator, so
Table[Column[{i, i^2, i^3}], {i, 20}]
For what it's worth, Column is kind of a weird thing to use here without any contextual justification. Not sure why they would expect you to use column, but it does make the problem a bit confusing, in my opinion.