Advertisement
SansNumbers

this is what i do when i'm bored (polyphemus stacking 2)

Jul 15th, 2012
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.77 KB | None | 0 0
  1. -- Stacks 1 through 17 can be found at http://pastebin.com/EYuR71ZG
  2.  
  3. > x = (x + 4) * 2
  4. > print(x)
  5. 2359288 -- 18
  6. > x = (x + 4) * 2
  7. > print(x)
  8. 4718584 -- 19
  9. > x = (x + 4) * 2
  10. > print(x)
  11. 9437176 -- 20
  12. > x = (x + 4) * 2
  13. > print(x)
  14. 18874360 -- 21
  15. > x = (x + 4) * 2
  16. > print(x)
  17. 37748728 -- 22
  18. > x = (x + 4) * 2
  19. > print(x)
  20. 75497464 -- 23
  21. > x = (x + 4) * 2
  22. > print(x)
  23. 150994936 -- 24
  24. > x = (x + 4) * 2
  25. > print(x)
  26. 301989880 -- 25
  27. > x = (x + 4) * 2
  28. > print(x)
  29. 603979768 -- 26
  30. > x = (x + 4) * 2
  31. > print(x)
  32. 1207959544 -- 27
  33. > x = (x + 4) * 2
  34. > print(x)
  35. 2415919096 -- 28
  36. > x = (x + 4) * 2
  37. > print(x)
  38. 4831838200 -- 29
  39. > x = (x + 4) * 2
  40. > print(x)
  41. 9663676408 -- 30
  42. > x = (x + 4) * 2
  43. > print(x)
  44. 19327352824 -- 31
  45. > x = (x + 4) * 2
  46. > print(x)
  47. 38654705656 -- 32
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement