Advertisement
Guest User

Untitled

a guest
Mar 28th, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. In[1]:= Partition[
  2. Table[IntegerDigits[(1010101030 + 100 k)^2][[15]], {k, 1, 50}], 25]
  3.  
  4. Out[1]=
  5. {{7, 1, 6, 4, 4, 5, 9, 4, 2, 2, 3, 7, 2, 0, 0, 1, 5, 0, 8, 8, 9, 3, 8, 6, 6},
  6. {7, 1, 6, 4, 4, 5, 9, 4, 2, 2, 3, 7, 2, 0, 0, 1, 5, 0, 8, 8, 9, 3, 8, 6, 6}}
  7.  
  8. In[2]:= Partition[
  9. Table[IntegerDigits[(1010101070 + 100 k)^2][[15]], {k, 1, 50}], 25]
  10.  
  11. Out[2]=
  12. {{6, 1, 7, 6, 6, 8, 3, 9, 8, 8, 0, 5, 1, 0, 0, 2, 7, 3, 2, 2, 4, 9, 5, 4, 4},
  13. {6, 1, 7, 6, 6, 8, 3, 9, 8, 8, 0, 5, 1, 0, 0, 2, 7, 3, 2, 2, 4, 9, 5, 4, 4}}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement