1
Format[primeFactorForm[n_Integer]] := 
  Times @@ Superscript @@@ FactorInteger[n] /. _[x_] :> x;
block[n_Integer] := 
  Join @@@ Array[{#, primeFactorForm@#} &[# + 100*#2] &, {100, 
     10}, {1 + (n - 1) 1000, 0}];
grid[m_?MatrixQ] := 
  With[{th = AbsoluteThickness[1]}, 
   Grid[m, Dividers -> ({#, #} &@{th, {True}, th})]];
 sa =(*Print~Scan~*)Array[grid@block@# &, 2];
Style[sa, FontWeight -> Plain, FontFamily -> "Arial", FontSize -> 6]

i want to delete the curly brackets

enter image description here

jlptrbsa
  • 41
  • 3

1 Answers1

1

Try thisenter image description here

 Format[primeFactorForm[n_Integer]] := 
  Times @@ Superscript @@@ FactorInteger[n] /. _[x_] :> x;
block[n_Integer] := 
  Join @@@ Array[{#, primeFactorForm@#} &[# + 100*#2] &, {100, 
     10}, {1 + (n - 1) 1000, 0}];
grid[m_?MatrixQ] := 
  With[{th = AbsoluteThickness[1]}, 
   Grid[m, Dividers -> ({#, #} &@{th, {True}, th})]];
 sa =(*Print~Scan~*)Array[grid@block@# &, 2];
Style[sa, FontWeight -> Plain, FontFamily -> "Arial", FontSize -> 6][[1,1]]

enter image description here

Have fun!

Alexei Boulbitch
  • 39,397
  • 2
  • 47
  • 96