Skip to content

Instantly share code, notes, and snippets.

@raganwald
Last active May 4, 2020 18:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save raganwald/57e9ebf26e3cd2d07aa014e79c1e9748 to your computer and use it in GitHub Desktop.
Save raganwald/57e9ebf26e3cd2d07aa014e79c1e9748 to your computer and use it in GitHub Desktop.
Computing fib(7) with FRACTRAN

We wish to compute fib(7).

This is a FRACTRAN program for computing any Fibonacci number: 17/65, 133/34, 17/19, 23/17, 2233/69, 23/29, 31/23, 74/341, 31/37, 41/31, 129/287, 41/43, 13/41, 1/13, 1/3.

The seed n is computed n = 78 * 5^(x - 1). Therefore, we start with n = 78 * 5^(7-1), which is 1,218,750.

  • The first fraction in the program is 17/65. 1,218,750 multiplied by 17/65 is 318,750, so we replace 1,218,750 with 318,750 and begin again.
  • The first fraction in the program is 17/65. 318,750 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 318,750 multiplied by 133/34 is 1,246,875, so we replace 318,750 with 1,246,875 and begin again.
  • The first fraction in the program is 17/65. 1,246,875 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 1,246,875 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 1,246,875 multiplied by 17/19 is 1,115,625, so we replace 1,246,875 with 1,115,625 and begin again.
  • The first fraction in the program is 17/65. 1,115,625 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 1,115,625 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 1,115,625 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 1,115,625 multiplied by 23/17 is 1,509,375, so we replace 1,115,625 with 1,509,375 and begin again.
  • The first fraction in the program is 17/65. 1,509,375 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 1,509,375 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 1,509,375 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 1,509,375 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 1,509,375 multiplied by 2,233/69 is 48,846,875, so we replace 1,509,375 with 48,846,875 and begin again.
  • The first fraction in the program is 17/65. 48,846,875 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 48,846,875 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 48,846,875 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 48,846,875 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 48,846,875 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 48,846,875 multiplied by 23/29 is 38,740,625, so we replace 48,846,875 with 38,740,625 and begin again.
  • The first fraction in the program is 17/65. 38,740,625 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 38,740,625 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 38,740,625 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 38,740,625 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 38,740,625 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 38,740,625 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 38,740,625 multiplied by 31/23 is 52,215,625, so we replace 38,740,625 with 52,215,625 and begin again.
  • The first fraction in the program is 17/65. 52,215,625 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 52,215,625 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 52,215,625 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 52,215,625 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 52,215,625 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 52,215,625 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 52,215,625 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 52,215,625 multiplied by 74/341 is 11,331,250, so we replace 52,215,625 with 11,331,250 and begin again.
  • The first fraction in the program is 17/65. 11,331,250 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 11,331,250 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 11,331,250 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 11,331,250 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 11,331,250 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 11,331,250 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 11,331,250 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 11,331,250 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 11,331,250 multiplied by 31/37 is 9,493,750, so we replace 11,331,250 with 9,493,750 and begin again.
  • The first fraction in the program is 17/65. 9,493,750 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 9,493,750 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 9,493,750 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 9,493,750 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 9,493,750 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 9,493,750 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 9,493,750 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 9,493,750 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 9,493,750 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 9,493,750 multiplied by 41/31 is 12,556,250, so we replace 9,493,750 with 12,556,250 and begin again.
  • The first fraction in the program is 17/65. 12,556,250 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 12,556,250 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 12,556,250 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 12,556,250 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 12,556,250 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 12,556,250 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 12,556,250 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 12,556,250 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 12,556,250 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 12,556,250 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 12,556,250 multiplied by 129/287 is 5,643,750, so we replace 12,556,250 with 5,643,750 and begin again.
  • The first fraction in the program is 17/65. 5,643,750 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 5,643,750 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 5,643,750 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 5,643,750 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 5,643,750 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 5,643,750 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 5,643,750 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 5,643,750 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 5,643,750 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 5,643,750 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 5,643,750 leaves a remainder when divided by 287, so we move on.
  • The next fraction in the program is 41/43. 5,643,750 multiplied by 41/43 is 5,381,250, so we replace 5,643,750 with 5,381,250 and begin again.
  • The first fraction in the program is 17/65. 5,381,250 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 5,381,250 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 5,381,250 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 5,381,250 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 5,381,250 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 5,381,250 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 5,381,250 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 5,381,250 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 5,381,250 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 5,381,250 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 5,381,250 multiplied by 129/287 is 2,418,750, so we replace 5,381,250 with 2,418,750 and begin again.
  • The first fraction in the program is 17/65. 2,418,750 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 2,418,750 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 2,418,750 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 2,418,750 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 2,418,750 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 2,418,750 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 2,418,750 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 2,418,750 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 2,418,750 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 2,418,750 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 2,418,750 leaves a remainder when divided by 287, so we move on.
  • The next fraction in the program is 41/43. 2,418,750 multiplied by 41/43 is 2,306,250, so we replace 2,418,750 with 2,306,250 and begin again.
  • The first fraction in the program is 17/65. 2,306,250 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 2,306,250 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 2,306,250 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 2,306,250 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 2,306,250 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 2,306,250 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 2,306,250 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 2,306,250 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 2,306,250 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 2,306,250 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 2,306,250 leaves a remainder when divided by 287, so we move on.
  • The next fraction in the program is 41/43. 2,306,250 leaves a remainder when divided by 43, so we move on.
  • The next fraction in the program is 13/41. 2,306,250 multiplied by 13/41 is 731,250, so we replace 2,306,250 with 731,250 and begin again.
  • The first fraction in the program is 17/65. 731,250 multiplied by 17/65 is 191,250, so we replace 731,250 with 191,250 and begin again.
  • The first fraction in the program is 17/65. 191,250 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 191,250 multiplied by 133/34 is 748,125, so we replace 191,250 with 748,125 and begin again.
  • The first fraction in the program is 17/65. 748,125 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 748,125 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 748,125 multiplied by 17/19 is 669,375, so we replace 748,125 with 669,375 and begin again.
  • The first fraction in the program is 17/65. 669,375 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 669,375 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 669,375 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 669,375 multiplied by 23/17 is 905,625, so we replace 669,375 with 905,625 and begin again.
  • The first fraction in the program is 17/65. 905,625 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 905,625 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 905,625 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 905,625 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 905,625 multiplied by 2,233/69 is 29,308,125, so we replace 905,625 with 29,308,125 and begin again.
  • The first fraction in the program is 17/65. 29,308,125 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 29,308,125 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 29,308,125 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 29,308,125 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 29,308,125 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 29,308,125 multiplied by 23/29 is 23,244,375, so we replace 29,308,125 with 23,244,375 and begin again.
  • The first fraction in the program is 17/65. 23,244,375 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 23,244,375 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 23,244,375 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 23,244,375 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 23,244,375 multiplied by 2,233/69 is 752,241,875, so we replace 23,244,375 with 752,241,875 and begin again.
  • The first fraction in the program is 17/65. 752,241,875 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 752,241,875 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 752,241,875 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 752,241,875 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 752,241,875 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 752,241,875 multiplied by 23/29 is 596,605,625, so we replace 752,241,875 with 596,605,625 and begin again.
  • The first fraction in the program is 17/65. 596,605,625 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 596,605,625 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 596,605,625 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 596,605,625 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 596,605,625 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 596,605,625 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 596,605,625 multiplied by 31/23 is 804,120,625, so we replace 596,605,625 with 804,120,625 and begin again.
  • The first fraction in the program is 17/65. 804,120,625 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 804,120,625 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 804,120,625 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 804,120,625 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 804,120,625 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 804,120,625 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 804,120,625 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 804,120,625 multiplied by 74/341 is 174,501,250, so we replace 804,120,625 with 174,501,250 and begin again.
  • The first fraction in the program is 17/65. 174,501,250 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 174,501,250 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 174,501,250 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 174,501,250 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 174,501,250 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 174,501,250 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 174,501,250 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 174,501,250 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 174,501,250 multiplied by 31/37 is 146,203,750, so we replace 174,501,250 with 146,203,750 and begin again.
  • The first fraction in the program is 17/65. 146,203,750 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 146,203,750 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 146,203,750 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 146,203,750 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 146,203,750 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 146,203,750 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 146,203,750 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 146,203,750 multiplied by 74/341 is 31,727,500, so we replace 146,203,750 with 31,727,500 and begin again.
  • The first fraction in the program is 17/65. 31,727,500 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 31,727,500 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 31,727,500 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 31,727,500 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 31,727,500 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 31,727,500 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 31,727,500 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 31,727,500 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 31,727,500 multiplied by 31/37 is 26,582,500, so we replace 31,727,500 with 26,582,500 and begin again.
  • The first fraction in the program is 17/65. 26,582,500 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 26,582,500 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 26,582,500 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 26,582,500 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 26,582,500 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 26,582,500 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 26,582,500 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 26,582,500 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 26,582,500 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 26,582,500 multiplied by 41/31 is 35,157,500, so we replace 26,582,500 with 35,157,500 and begin again.
  • The first fraction in the program is 17/65. 35,157,500 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 35,157,500 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 35,157,500 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 35,157,500 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 35,157,500 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 35,157,500 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 35,157,500 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 35,157,500 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 35,157,500 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 35,157,500 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 35,157,500 multiplied by 129/287 is 15,802,500, so we replace 35,157,500 with 15,802,500 and begin again.
  • The first fraction in the program is 17/65. 15,802,500 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 15,802,500 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 15,802,500 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 15,802,500 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 15,802,500 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 15,802,500 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 15,802,500 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 15,802,500 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 15,802,500 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 15,802,500 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 15,802,500 leaves a remainder when divided by 287, so we move on.
  • The next fraction in the program is 41/43. 15,802,500 multiplied by 41/43 is 15,067,500, so we replace 15,802,500 with 15,067,500 and begin again.
  • The first fraction in the program is 17/65. 15,067,500 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 15,067,500 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 15,067,500 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 15,067,500 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 15,067,500 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 15,067,500 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 15,067,500 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 15,067,500 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 15,067,500 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 15,067,500 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 15,067,500 multiplied by 129/287 is 6,772,500, so we replace 15,067,500 with 6,772,500 and begin again.
  • The first fraction in the program is 17/65. 6,772,500 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 6,772,500 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 6,772,500 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 6,772,500 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 6,772,500 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 6,772,500 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 6,772,500 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 6,772,500 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 6,772,500 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 6,772,500 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 6,772,500 leaves a remainder when divided by 287, so we move on.
  • The next fraction in the program is 41/43. 6,772,500 multiplied by 41/43 is 6,457,500, so we replace 6,772,500 with 6,457,500 and begin again.
  • The first fraction in the program is 17/65. 6,457,500 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 6,457,500 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 6,457,500 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 6,457,500 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 6,457,500 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 6,457,500 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 6,457,500 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 6,457,500 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 6,457,500 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 6,457,500 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 6,457,500 multiplied by 129/287 is 2,902,500, so we replace 6,457,500 with 2,902,500 and begin again.
  • The first fraction in the program is 17/65. 2,902,500 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 2,902,500 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 2,902,500 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 2,902,500 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 2,902,500 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 2,902,500 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 2,902,500 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 2,902,500 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 2,902,500 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 2,902,500 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 2,902,500 leaves a remainder when divided by 287, so we move on.
  • The next fraction in the program is 41/43. 2,902,500 multiplied by 41/43 is 2,767,500, so we replace 2,902,500 with 2,767,500 and begin again.
  • The first fraction in the program is 17/65. 2,767,500 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 2,767,500 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 2,767,500 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 2,767,500 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 2,767,500 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 2,767,500 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 2,767,500 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 2,767,500 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 2,767,500 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 2,767,500 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 2,767,500 leaves a remainder when divided by 287, so we move on.
  • The next fraction in the program is 41/43. 2,767,500 leaves a remainder when divided by 43, so we move on.
  • The next fraction in the program is 13/41. 2,767,500 multiplied by 13/41 is 877,500, so we replace 2,767,500 with 877,500 and begin again.
  • The first fraction in the program is 17/65. 877,500 multiplied by 17/65 is 229,500, so we replace 877,500 with 229,500 and begin again.
  • The first fraction in the program is 17/65. 229,500 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 229,500 multiplied by 133/34 is 897,750, so we replace 229,500 with 897,750 and begin again.
  • The first fraction in the program is 17/65. 897,750 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 897,750 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 897,750 multiplied by 17/19 is 803,250, so we replace 897,750 with 803,250 and begin again.
  • The first fraction in the program is 17/65. 803,250 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 803,250 multiplied by 133/34 is 3,142,125, so we replace 803,250 with 3,142,125 and begin again.
  • The first fraction in the program is 17/65. 3,142,125 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 3,142,125 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 3,142,125 multiplied by 17/19 is 2,811,375, so we replace 3,142,125 with 2,811,375 and begin again.
  • The first fraction in the program is 17/65. 2,811,375 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 2,811,375 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 2,811,375 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 2,811,375 multiplied by 23/17 is 3,803,625, so we replace 2,811,375 with 3,803,625 and begin again.
  • The first fraction in the program is 17/65. 3,803,625 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 3,803,625 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 3,803,625 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 3,803,625 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 3,803,625 multiplied by 2,233/69 is 123,094,125, so we replace 3,803,625 with 123,094,125 and begin again.
  • The first fraction in the program is 17/65. 123,094,125 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 123,094,125 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 123,094,125 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 123,094,125 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 123,094,125 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 123,094,125 multiplied by 23/29 is 97,626,375, so we replace 123,094,125 with 97,626,375 and begin again.
  • The first fraction in the program is 17/65. 97,626,375 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 97,626,375 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 97,626,375 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 97,626,375 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 97,626,375 multiplied by 2,233/69 is 3,159,415,875, so we replace 97,626,375 with 3,159,415,875 and begin again.
  • The first fraction in the program is 17/65. 3,159,415,875 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 3,159,415,875 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 3,159,415,875 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 3,159,415,875 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 3,159,415,875 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 3,159,415,875 multiplied by 23/29 is 2,505,743,625, so we replace 3,159,415,875 with 2,505,743,625 and begin again.
  • The first fraction in the program is 17/65. 2,505,743,625 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 2,505,743,625 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 2,505,743,625 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 2,505,743,625 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 2,505,743,625 multiplied by 2,233/69 is 81,091,674,125, so we replace 2,505,743,625 with 81,091,674,125 and begin again.
  • The first fraction in the program is 17/65. 81,091,674,125 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 81,091,674,125 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 81,091,674,125 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 81,091,674,125 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 81,091,674,125 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 81,091,674,125 multiplied by 23/29 is 64,314,086,375, so we replace 81,091,674,125 with 64,314,086,375 and begin again.
  • The first fraction in the program is 17/65. 64,314,086,375 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 64,314,086,375 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 64,314,086,375 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 64,314,086,375 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 64,314,086,375 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 64,314,086,375 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 64,314,086,375 multiplied by 31/23 is 86,684,203,375, so we replace 64,314,086,375 with 86,684,203,375 and begin again.
  • The first fraction in the program is 17/65. 86,684,203,375 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 86,684,203,375 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 86,684,203,375 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 86,684,203,375 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 86,684,203,375 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 86,684,203,375 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 86,684,203,375 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 86,684,203,375 multiplied by 74/341 is 18,811,234,750, so we replace 86,684,203,375 with 18,811,234,750 and begin again.
  • The first fraction in the program is 17/65. 18,811,234,750 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 18,811,234,750 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 18,811,234,750 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 18,811,234,750 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 18,811,234,750 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 18,811,234,750 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 18,811,234,750 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 18,811,234,750 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 18,811,234,750 multiplied by 31/37 is 15,760,764,250, so we replace 18,811,234,750 with 15,760,764,250 and begin again.
  • The first fraction in the program is 17/65. 15,760,764,250 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 15,760,764,250 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 15,760,764,250 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 15,760,764,250 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 15,760,764,250 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 15,760,764,250 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 15,760,764,250 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 15,760,764,250 multiplied by 74/341 is 3,420,224,500, so we replace 15,760,764,250 with 3,420,224,500 and begin again.
  • The first fraction in the program is 17/65. 3,420,224,500 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 3,420,224,500 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 3,420,224,500 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 3,420,224,500 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 3,420,224,500 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 3,420,224,500 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 3,420,224,500 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 3,420,224,500 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 3,420,224,500 multiplied by 31/37 is 2,865,593,500, so we replace 3,420,224,500 with 2,865,593,500 and begin again.
  • The first fraction in the program is 17/65. 2,865,593,500 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 2,865,593,500 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 2,865,593,500 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 2,865,593,500 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 2,865,593,500 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 2,865,593,500 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 2,865,593,500 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 2,865,593,500 multiplied by 74/341 is 621,859,000, so we replace 2,865,593,500 with 621,859,000 and begin again.
  • The first fraction in the program is 17/65. 621,859,000 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 621,859,000 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 621,859,000 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 621,859,000 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 621,859,000 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 621,859,000 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 621,859,000 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 621,859,000 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 621,859,000 multiplied by 31/37 is 521,017,000, so we replace 621,859,000 with 521,017,000 and begin again.
  • The first fraction in the program is 17/65. 521,017,000 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 521,017,000 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 521,017,000 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 521,017,000 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 521,017,000 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 521,017,000 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 521,017,000 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 521,017,000 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 521,017,000 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 521,017,000 multiplied by 41/31 is 689,087,000, so we replace 521,017,000 with 689,087,000 and begin again.
  • The first fraction in the program is 17/65. 689,087,000 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 689,087,000 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 689,087,000 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 689,087,000 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 689,087,000 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 689,087,000 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 689,087,000 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 689,087,000 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 689,087,000 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 689,087,000 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 689,087,000 multiplied by 129/287 is 309,729,000, so we replace 689,087,000 with 309,729,000 and begin again.
  • The first fraction in the program is 17/65. 309,729,000 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 309,729,000 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 309,729,000 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 309,729,000 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 309,729,000 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 309,729,000 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 309,729,000 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 309,729,000 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 309,729,000 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 309,729,000 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 309,729,000 leaves a remainder when divided by 287, so we move on.
  • The next fraction in the program is 41/43. 309,729,000 multiplied by 41/43 is 295,323,000, so we replace 309,729,000 with 295,323,000 and begin again.
  • The first fraction in the program is 17/65. 295,323,000 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 295,323,000 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 295,323,000 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 295,323,000 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 295,323,000 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 295,323,000 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 295,323,000 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 295,323,000 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 295,323,000 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 295,323,000 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 295,323,000 multiplied by 129/287 is 132,741,000, so we replace 295,323,000 with 132,741,000 and begin again.
  • The first fraction in the program is 17/65. 132,741,000 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 132,741,000 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 132,741,000 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 132,741,000 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 132,741,000 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 132,741,000 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 132,741,000 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 132,741,000 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 132,741,000 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 132,741,000 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 132,741,000 leaves a remainder when divided by 287, so we move on.
  • The next fraction in the program is 41/43. 132,741,000 multiplied by 41/43 is 126,567,000, so we replace 132,741,000 with 126,567,000 and begin again.
  • The first fraction in the program is 17/65. 126,567,000 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 126,567,000 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 126,567,000 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 126,567,000 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 126,567,000 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 126,567,000 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 126,567,000 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 126,567,000 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 126,567,000 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 126,567,000 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 126,567,000 multiplied by 129/287 is 56,889,000, so we replace 126,567,000 with 56,889,000 and begin again.
  • The first fraction in the program is 17/65. 56,889,000 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 56,889,000 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 56,889,000 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 56,889,000 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 56,889,000 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 56,889,000 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 56,889,000 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 56,889,000 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 56,889,000 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 56,889,000 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 56,889,000 leaves a remainder when divided by 287, so we move on.
  • The next fraction in the program is 41/43. 56,889,000 multiplied by 41/43 is 54,243,000, so we replace 56,889,000 with 54,243,000 and begin again.
  • The first fraction in the program is 17/65. 54,243,000 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 54,243,000 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 54,243,000 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 54,243,000 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 54,243,000 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 54,243,000 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 54,243,000 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 54,243,000 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 54,243,000 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 54,243,000 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 54,243,000 multiplied by 129/287 is 24,381,000, so we replace 54,243,000 with 24,381,000 and begin again.
  • The first fraction in the program is 17/65. 24,381,000 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 24,381,000 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 24,381,000 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 24,381,000 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 24,381,000 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 24,381,000 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 24,381,000 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 24,381,000 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 24,381,000 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 24,381,000 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 24,381,000 leaves a remainder when divided by 287, so we move on.
  • The next fraction in the program is 41/43. 24,381,000 multiplied by 41/43 is 23,247,000, so we replace 24,381,000 with 23,247,000 and begin again.
  • The first fraction in the program is 17/65. 23,247,000 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 23,247,000 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 23,247,000 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 23,247,000 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 23,247,000 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 23,247,000 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 23,247,000 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 23,247,000 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 23,247,000 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 23,247,000 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 23,247,000 multiplied by 129/287 is 10,449,000, so we replace 23,247,000 with 10,449,000 and begin again.
  • The first fraction in the program is 17/65. 10,449,000 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 10,449,000 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 10,449,000 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 10,449,000 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 10,449,000 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 10,449,000 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 10,449,000 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 10,449,000 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 10,449,000 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 10,449,000 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 10,449,000 leaves a remainder when divided by 287, so we move on.
  • The next fraction in the program is 41/43. 10,449,000 multiplied by 41/43 is 9,963,000, so we replace 10,449,000 with 9,963,000 and begin again.
  • The first fraction in the program is 17/65. 9,963,000 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 9,963,000 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 9,963,000 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 9,963,000 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 9,963,000 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 9,963,000 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 9,963,000 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 9,963,000 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 9,963,000 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 9,963,000 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 9,963,000 leaves a remainder when divided by 287, so we move on.
  • The next fraction in the program is 41/43. 9,963,000 leaves a remainder when divided by 43, so we move on.
  • The next fraction in the program is 13/41. 9,963,000 multiplied by 13/41 is 3,159,000, so we replace 9,963,000 with 3,159,000 and begin again.
  • The first fraction in the program is 17/65. 3,159,000 multiplied by 17/65 is 826,200, so we replace 3,159,000 with 826,200 and begin again.
  • The first fraction in the program is 17/65. 826,200 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 826,200 multiplied by 133/34 is 3,231,900, so we replace 826,200 with 3,231,900 and begin again.
  • The first fraction in the program is 17/65. 3,231,900 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 3,231,900 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 3,231,900 multiplied by 17/19 is 2,891,700, so we replace 3,231,900 with 2,891,700 and begin again.
  • The first fraction in the program is 17/65. 2,891,700 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 2,891,700 multiplied by 133/34 is 11,311,650, so we replace 2,891,700 with 11,311,650 and begin again.
  • The first fraction in the program is 17/65. 11,311,650 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 11,311,650 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 11,311,650 multiplied by 17/19 is 10,120,950, so we replace 11,311,650 with 10,120,950 and begin again.
  • The first fraction in the program is 17/65. 10,120,950 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 10,120,950 multiplied by 133/34 is 39,590,775, so we replace 10,120,950 with 39,590,775 and begin again.
  • The first fraction in the program is 17/65. 39,590,775 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 39,590,775 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 39,590,775 multiplied by 17/19 is 35,423,325, so we replace 39,590,775 with 35,423,325 and begin again.
  • The first fraction in the program is 17/65. 35,423,325 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 35,423,325 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 35,423,325 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 35,423,325 multiplied by 23/17 is 47,925,675, so we replace 35,423,325 with 47,925,675 and begin again.
  • The first fraction in the program is 17/65. 47,925,675 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 47,925,675 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 47,925,675 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 47,925,675 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 47,925,675 multiplied by 2,233/69 is 1,550,985,975, so we replace 47,925,675 with 1,550,985,975 and begin again.
  • The first fraction in the program is 17/65. 1,550,985,975 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 1,550,985,975 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 1,550,985,975 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 1,550,985,975 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 1,550,985,975 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 1,550,985,975 multiplied by 23/29 is 1,230,092,325, so we replace 1,550,985,975 with 1,230,092,325 and begin again.
  • The first fraction in the program is 17/65. 1,230,092,325 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 1,230,092,325 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 1,230,092,325 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 1,230,092,325 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 1,230,092,325 multiplied by 2,233/69 is 39,808,640,025, so we replace 1,230,092,325 with 39,808,640,025 and begin again.
  • The first fraction in the program is 17/65. 39,808,640,025 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 39,808,640,025 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 39,808,640,025 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 39,808,640,025 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 39,808,640,025 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 39,808,640,025 multiplied by 23/29 is 31,572,369,675, so we replace 39,808,640,025 with 31,572,369,675 and begin again.
  • The first fraction in the program is 17/65. 31,572,369,675 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 31,572,369,675 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 31,572,369,675 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 31,572,369,675 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 31,572,369,675 multiplied by 2,233/69 is 1,021,755,093,975, so we replace 31,572,369,675 with 1,021,755,093,975 and begin again.
  • The first fraction in the program is 17/65. 1,021,755,093,975 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 1,021,755,093,975 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 1,021,755,093,975 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 1,021,755,093,975 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 1,021,755,093,975 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 1,021,755,093,975 multiplied by 23/29 is 810,357,488,325, so we replace 1,021,755,093,975 with 810,357,488,325 and begin again.
  • The first fraction in the program is 17/65. 810,357,488,325 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 810,357,488,325 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 810,357,488,325 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 810,357,488,325 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 810,357,488,325 multiplied by 2,233/69 is 26,225,047,412,025, so we replace 810,357,488,325 with 26,225,047,412,025 and begin again.
  • The first fraction in the program is 17/65. 26,225,047,412,025 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 26,225,047,412,025 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 26,225,047,412,025 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 26,225,047,412,025 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 26,225,047,412,025 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 26,225,047,412,025 multiplied by 23/29 is 20,799,175,533,675, so we replace 26,225,047,412,025 with 20,799,175,533,675 and begin again.
  • The first fraction in the program is 17/65. 20,799,175,533,675 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 20,799,175,533,675 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 20,799,175,533,675 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 20,799,175,533,675 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 20,799,175,533,675 multiplied by 2,233/69 is 673,109,550,241,975, so we replace 20,799,175,533,675 with 673,109,550,241,975 and begin again.
  • The first fraction in the program is 17/65. 673,109,550,241,975 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 673,109,550,241,975 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 673,109,550,241,975 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 673,109,550,241,975 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 673,109,550,241,975 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 673,109,550,241,975 multiplied by 23/29 is 533,845,505,364,325, so we replace 673,109,550,241,975 with 533,845,505,364,325 and begin again.
  • The first fraction in the program is 17/65. 533,845,505,364,325 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 533,845,505,364,325 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 533,845,505,364,325 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 533,845,505,364,325 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 533,845,505,364,325 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 533,845,505,364,325 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 533,845,505,364,325 multiplied by 31/23 is 719,530,898,534,525, so we replace 533,845,505,364,325 with 719,530,898,534,525 and begin again.
  • The first fraction in the program is 17/65. 719,530,898,534,525 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 719,530,898,534,525 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 719,530,898,534,525 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 719,530,898,534,525 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 719,530,898,534,525 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 719,530,898,534,525 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 719,530,898,534,525 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 719,530,898,534,525 multiplied by 74/341 is 156,144,535,165,850, so we replace 719,530,898,534,525 with 156,144,535,165,850 and begin again.
  • The first fraction in the program is 17/65. 156,144,535,165,850 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 156,144,535,165,850 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 156,144,535,165,850 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 156,144,535,165,850 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 156,144,535,165,850 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 156,144,535,165,850 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 156,144,535,165,850 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 156,144,535,165,850 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 156,144,535,165,850 multiplied by 31/37 is 130,823,799,733,550, so we replace 156,144,535,165,850 with 130,823,799,733,550 and begin again.
  • The first fraction in the program is 17/65. 130,823,799,733,550 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 130,823,799,733,550 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 130,823,799,733,550 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 130,823,799,733,550 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 130,823,799,733,550 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 130,823,799,733,550 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 130,823,799,733,550 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 130,823,799,733,550 multiplied by 74/341 is 28,389,915,484,700, so we replace 130,823,799,733,550 with 28,389,915,484,700 and begin again.
  • The first fraction in the program is 17/65. 28,389,915,484,700 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 28,389,915,484,700 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 28,389,915,484,700 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 28,389,915,484,700 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 28,389,915,484,700 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 28,389,915,484,700 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 28,389,915,484,700 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 28,389,915,484,700 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 28,389,915,484,700 multiplied by 31/37 is 23,786,145,406,100, so we replace 28,389,915,484,700 with 23,786,145,406,100 and begin again.
  • The first fraction in the program is 17/65. 23,786,145,406,100 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 23,786,145,406,100 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 23,786,145,406,100 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 23,786,145,406,100 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 23,786,145,406,100 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 23,786,145,406,100 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 23,786,145,406,100 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 23,786,145,406,100 multiplied by 74/341 is 5,161,802,815,400, so we replace 23,786,145,406,100 with 5,161,802,815,400 and begin again.
  • The first fraction in the program is 17/65. 5,161,802,815,400 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 5,161,802,815,400 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 5,161,802,815,400 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 5,161,802,815,400 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 5,161,802,815,400 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 5,161,802,815,400 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 5,161,802,815,400 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 5,161,802,815,400 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 5,161,802,815,400 multiplied by 31/37 is 4,324,753,710,200, so we replace 5,161,802,815,400 with 4,324,753,710,200 and begin again.
  • The first fraction in the program is 17/65. 4,324,753,710,200 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 4,324,753,710,200 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 4,324,753,710,200 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 4,324,753,710,200 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 4,324,753,710,200 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 4,324,753,710,200 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 4,324,753,710,200 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 4,324,753,710,200 multiplied by 74/341 is 938,509,602,800, so we replace 4,324,753,710,200 with 938,509,602,800 and begin again.
  • The first fraction in the program is 17/65. 938,509,602,800 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 938,509,602,800 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 938,509,602,800 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 938,509,602,800 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 938,509,602,800 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 938,509,602,800 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 938,509,602,800 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 938,509,602,800 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 938,509,602,800 multiplied by 31/37 is 786,318,856,400, so we replace 938,509,602,800 with 786,318,856,400 and begin again.
  • The first fraction in the program is 17/65. 786,318,856,400 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 786,318,856,400 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 786,318,856,400 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 786,318,856,400 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 786,318,856,400 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 786,318,856,400 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 786,318,856,400 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 786,318,856,400 multiplied by 74/341 is 170,638,109,600, so we replace 786,318,856,400 with 170,638,109,600 and begin again.
  • The first fraction in the program is 17/65. 170,638,109,600 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 170,638,109,600 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 170,638,109,600 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 170,638,109,600 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 170,638,109,600 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 170,638,109,600 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 170,638,109,600 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 170,638,109,600 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 170,638,109,600 multiplied by 31/37 is 142,967,064,800, so we replace 170,638,109,600 with 142,967,064,800 and begin again.
  • The first fraction in the program is 17/65. 142,967,064,800 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 142,967,064,800 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 142,967,064,800 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 142,967,064,800 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 142,967,064,800 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 142,967,064,800 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 142,967,064,800 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 142,967,064,800 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 142,967,064,800 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 142,967,064,800 multiplied by 41/31 is 189,085,472,800, so we replace 142,967,064,800 with 189,085,472,800 and begin again.
  • The first fraction in the program is 17/65. 189,085,472,800 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 189,085,472,800 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 189,085,472,800 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 189,085,472,800 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 189,085,472,800 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 189,085,472,800 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 189,085,472,800 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 189,085,472,800 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 189,085,472,800 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 189,085,472,800 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 189,085,472,800 multiplied by 129/287 is 84,989,637,600, so we replace 189,085,472,800 with 84,989,637,600 and begin again.
  • The first fraction in the program is 17/65. 84,989,637,600 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 84,989,637,600 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 84,989,637,600 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 84,989,637,600 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 84,989,637,600 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 84,989,637,600 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 84,989,637,600 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 84,989,637,600 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 84,989,637,600 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 84,989,637,600 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 84,989,637,600 leaves a remainder when divided by 287, so we move on.
  • The next fraction in the program is 41/43. 84,989,637,600 multiplied by 41/43 is 81,036,631,200, so we replace 84,989,637,600 with 81,036,631,200 and begin again.
  • The first fraction in the program is 17/65. 81,036,631,200 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 81,036,631,200 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 81,036,631,200 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 81,036,631,200 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 81,036,631,200 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 81,036,631,200 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 81,036,631,200 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 81,036,631,200 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 81,036,631,200 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 81,036,631,200 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 81,036,631,200 multiplied by 129/287 is 36,424,130,400, so we replace 81,036,631,200 with 36,424,130,400 and begin again.
  • The first fraction in the program is 17/65. 36,424,130,400 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 36,424,130,400 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 36,424,130,400 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 36,424,130,400 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 36,424,130,400 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 36,424,130,400 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 36,424,130,400 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 36,424,130,400 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 36,424,130,400 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 36,424,130,400 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 36,424,130,400 leaves a remainder when divided by 287, so we move on.
  • The next fraction in the program is 41/43. 36,424,130,400 multiplied by 41/43 is 34,729,984,800, so we replace 36,424,130,400 with 34,729,984,800 and begin again.
  • The first fraction in the program is 17/65. 34,729,984,800 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 34,729,984,800 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 34,729,984,800 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 34,729,984,800 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 34,729,984,800 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 34,729,984,800 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 34,729,984,800 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 34,729,984,800 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 34,729,984,800 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 34,729,984,800 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 34,729,984,800 multiplied by 129/287 is 15,610,341,600, so we replace 34,729,984,800 with 15,610,341,600 and begin again.
  • The first fraction in the program is 17/65. 15,610,341,600 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 15,610,341,600 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 15,610,341,600 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 15,610,341,600 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 15,610,341,600 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 15,610,341,600 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 15,610,341,600 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 15,610,341,600 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 15,610,341,600 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 15,610,341,600 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 15,610,341,600 leaves a remainder when divided by 287, so we move on.
  • The next fraction in the program is 41/43. 15,610,341,600 multiplied by 41/43 is 14,884,279,200, so we replace 15,610,341,600 with 14,884,279,200 and begin again.
  • The first fraction in the program is 17/65. 14,884,279,200 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 14,884,279,200 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 14,884,279,200 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 14,884,279,200 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 14,884,279,200 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 14,884,279,200 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 14,884,279,200 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 14,884,279,200 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 14,884,279,200 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 14,884,279,200 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 14,884,279,200 multiplied by 129/287 is 6,690,146,400, so we replace 14,884,279,200 with 6,690,146,400 and begin again.
  • The first fraction in the program is 17/65. 6,690,146,400 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 6,690,146,400 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 6,690,146,400 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 6,690,146,400 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 6,690,146,400 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 6,690,146,400 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 6,690,146,400 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 6,690,146,400 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 6,690,146,400 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 6,690,146,400 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 6,690,146,400 leaves a remainder when divided by 287, so we move on.
  • The next fraction in the program is 41/43. 6,690,146,400 multiplied by 41/43 is 6,378,976,800, so we replace 6,690,146,400 with 6,378,976,800 and begin again.
  • The first fraction in the program is 17/65. 6,378,976,800 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 6,378,976,800 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 6,378,976,800 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 6,378,976,800 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 6,378,976,800 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 6,378,976,800 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 6,378,976,800 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 6,378,976,800 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 6,378,976,800 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 6,378,976,800 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 6,378,976,800 multiplied by 129/287 is 2,867,205,600, so we replace 6,378,976,800 with 2,867,205,600 and begin again.
  • The first fraction in the program is 17/65. 2,867,205,600 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 2,867,205,600 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 2,867,205,600 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 2,867,205,600 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 2,867,205,600 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 2,867,205,600 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 2,867,205,600 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 2,867,205,600 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 2,867,205,600 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 2,867,205,600 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 2,867,205,600 leaves a remainder when divided by 287, so we move on.
  • The next fraction in the program is 41/43. 2,867,205,600 multiplied by 41/43 is 2,733,847,200, so we replace 2,867,205,600 with 2,733,847,200 and begin again.
  • The first fraction in the program is 17/65. 2,733,847,200 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 2,733,847,200 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 2,733,847,200 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 2,733,847,200 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 2,733,847,200 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 2,733,847,200 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 2,733,847,200 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 2,733,847,200 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 2,733,847,200 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 2,733,847,200 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 2,733,847,200 multiplied by 129/287 is 1,228,802,400, so we replace 2,733,847,200 with 1,228,802,400 and begin again.
  • The first fraction in the program is 17/65. 1,228,802,400 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 1,228,802,400 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 1,228,802,400 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 1,228,802,400 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 1,228,802,400 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 1,228,802,400 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 1,228,802,400 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 1,228,802,400 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 1,228,802,400 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 1,228,802,400 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 1,228,802,400 leaves a remainder when divided by 287, so we move on.
  • The next fraction in the program is 41/43. 1,228,802,400 multiplied by 41/43 is 1,171,648,800, so we replace 1,228,802,400 with 1,171,648,800 and begin again.
  • The first fraction in the program is 17/65. 1,171,648,800 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 1,171,648,800 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 1,171,648,800 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 1,171,648,800 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 1,171,648,800 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 1,171,648,800 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 1,171,648,800 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 1,171,648,800 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 1,171,648,800 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 1,171,648,800 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 1,171,648,800 multiplied by 129/287 is 526,629,600, so we replace 1,171,648,800 with 526,629,600 and begin again.
  • The first fraction in the program is 17/65. 526,629,600 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 526,629,600 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 526,629,600 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 526,629,600 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 526,629,600 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 526,629,600 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 526,629,600 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 526,629,600 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 526,629,600 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 526,629,600 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 526,629,600 leaves a remainder when divided by 287, so we move on.
  • The next fraction in the program is 41/43. 526,629,600 multiplied by 41/43 is 502,135,200, so we replace 526,629,600 with 502,135,200 and begin again.
  • The first fraction in the program is 17/65. 502,135,200 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 502,135,200 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 502,135,200 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 502,135,200 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 502,135,200 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 502,135,200 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 502,135,200 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 502,135,200 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 502,135,200 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 502,135,200 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 502,135,200 multiplied by 129/287 is 225,698,400, so we replace 502,135,200 with 225,698,400 and begin again.
  • The first fraction in the program is 17/65. 225,698,400 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 225,698,400 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 225,698,400 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 225,698,400 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 225,698,400 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 225,698,400 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 225,698,400 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 225,698,400 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 225,698,400 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 225,698,400 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 225,698,400 leaves a remainder when divided by 287, so we move on.
  • The next fraction in the program is 41/43. 225,698,400 multiplied by 41/43 is 215,200,800, so we replace 225,698,400 with 215,200,800 and begin again.
  • The first fraction in the program is 17/65. 215,200,800 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 215,200,800 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 215,200,800 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 215,200,800 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 215,200,800 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 215,200,800 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 215,200,800 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 215,200,800 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 215,200,800 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 215,200,800 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 215,200,800 leaves a remainder when divided by 287, so we move on.
  • The next fraction in the program is 41/43. 215,200,800 leaves a remainder when divided by 43, so we move on.
  • The next fraction in the program is 13/41. 215,200,800 multiplied by 13/41 is 68,234,400, so we replace 215,200,800 with 68,234,400 and begin again.
  • The first fraction in the program is 17/65. 68,234,400 multiplied by 17/65 is 17,845,920, so we replace 68,234,400 with 17,845,920 and begin again.
  • The first fraction in the program is 17/65. 17,845,920 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 17,845,920 multiplied by 133/34 is 69,809,040, so we replace 17,845,920 with 69,809,040 and begin again.
  • The first fraction in the program is 17/65. 69,809,040 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 69,809,040 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 69,809,040 multiplied by 17/19 is 62,460,720, so we replace 69,809,040 with 62,460,720 and begin again.
  • The first fraction in the program is 17/65. 62,460,720 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 62,460,720 multiplied by 133/34 is 244,331,640, so we replace 62,460,720 with 244,331,640 and begin again.
  • The first fraction in the program is 17/65. 244,331,640 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 244,331,640 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 244,331,640 multiplied by 17/19 is 218,612,520, so we replace 244,331,640 with 218,612,520 and begin again.
  • The first fraction in the program is 17/65. 218,612,520 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 218,612,520 multiplied by 133/34 is 855,160,740, so we replace 218,612,520 with 855,160,740 and begin again.
  • The first fraction in the program is 17/65. 855,160,740 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 855,160,740 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 855,160,740 multiplied by 17/19 is 765,143,820, so we replace 855,160,740 with 765,143,820 and begin again.
  • The first fraction in the program is 17/65. 765,143,820 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 765,143,820 multiplied by 133/34 is 2,993,062,590, so we replace 765,143,820 with 2,993,062,590 and begin again.
  • The first fraction in the program is 17/65. 2,993,062,590 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 2,993,062,590 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 2,993,062,590 multiplied by 17/19 is 2,678,003,370, so we replace 2,993,062,590 with 2,678,003,370 and begin again.
  • The first fraction in the program is 17/65. 2,678,003,370 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 2,678,003,370 multiplied by 133/34 is 10,475,719,065, so we replace 2,678,003,370 with 10,475,719,065 and begin again.
  • The first fraction in the program is 17/65. 10,475,719,065 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 10,475,719,065 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 10,475,719,065 multiplied by 17/19 is 9,373,011,795, so we replace 10,475,719,065 with 9,373,011,795 and begin again.
  • The first fraction in the program is 17/65. 9,373,011,795 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 9,373,011,795 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 9,373,011,795 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 9,373,011,795 multiplied by 23/17 is 12,681,133,605, so we replace 9,373,011,795 with 12,681,133,605 and begin again.
  • The first fraction in the program is 17/65. 12,681,133,605 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 12,681,133,605 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 12,681,133,605 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 12,681,133,605 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 12,681,133,605 multiplied by 2,233/69 is 410,390,888,985, so we replace 12,681,133,605 with 410,390,888,985 and begin again.
  • The first fraction in the program is 17/65. 410,390,888,985 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 410,390,888,985 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 410,390,888,985 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 410,390,888,985 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 410,390,888,985 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 410,390,888,985 multiplied by 23/29 is 325,482,429,195, so we replace 410,390,888,985 with 325,482,429,195 and begin again.
  • The first fraction in the program is 17/65. 325,482,429,195 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 325,482,429,195 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 325,482,429,195 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 325,482,429,195 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 325,482,429,195 multiplied by 2,233/69 is 10,533,366,150,615, so we replace 325,482,429,195 with 10,533,366,150,615 and begin again.
  • The first fraction in the program is 17/65. 10,533,366,150,615 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 10,533,366,150,615 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 10,533,366,150,615 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 10,533,366,150,615 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 10,533,366,150,615 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 10,533,366,150,615 multiplied by 23/29 is 8,354,049,016,005, so we replace 10,533,366,150,615 with 8,354,049,016,005 and begin again.
  • The first fraction in the program is 17/65. 8,354,049,016,005 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 8,354,049,016,005 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 8,354,049,016,005 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 8,354,049,016,005 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 8,354,049,016,005 multiplied by 2,233/69 is 270,356,397,865,785, so we replace 8,354,049,016,005 with 270,356,397,865,785 and begin again.
  • The first fraction in the program is 17/65. 270,356,397,865,785 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 270,356,397,865,785 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 270,356,397,865,785 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 270,356,397,865,785 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 270,356,397,865,785 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 270,356,397,865,785 multiplied by 23/29 is 214,420,591,410,795, so we replace 270,356,397,865,785 with 214,420,591,410,795 and begin again.
  • The first fraction in the program is 17/65. 214,420,591,410,795 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 214,420,591,410,795 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 214,420,591,410,795 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 214,420,591,410,795 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 214,420,591,410,795 multiplied by 2,233/69 is 6,939,147,545,221,815, so we replace 214,420,591,410,795 with 6,939,147,545,221,815 and begin again.
  • The first fraction in the program is 17/65. 6,939,147,545,221,815 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 6,939,147,545,221,815 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 6,939,147,545,221,815 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 6,939,147,545,221,815 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 6,939,147,545,221,815 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 6,939,147,545,221,815 multiplied by 23/29 is 5,503,461,846,210,405, so we replace 6,939,147,545,221,815 with 5,503,461,846,210,405 and begin again.
  • The first fraction in the program is 17/65. 5,503,461,846,210,405 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 5,503,461,846,210,405 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 5,503,461,846,210,405 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 5,503,461,846,210,405 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 5,503,461,846,210,405 multiplied by 2,233/69 is 178,104,786,994,026,585, so we replace 5,503,461,846,210,405 with 178,104,786,994,026,585 and begin again.
  • The first fraction in the program is 17/65. 178,104,786,994,026,585 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 178,104,786,994,026,585 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 178,104,786,994,026,585 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 178,104,786,994,026,585 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 178,104,786,994,026,585 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 178,104,786,994,026,585 multiplied by 23/29 is 141,255,520,719,400,395, so we replace 178,104,786,994,026,585 with 141,255,520,719,400,395 and begin again.
  • The first fraction in the program is 17/65. 141,255,520,719,400,395 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 141,255,520,719,400,395 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 141,255,520,719,400,395 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 141,255,520,719,400,395 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 141,255,520,719,400,395 multiplied by 2,233/69 is 4,571,356,199,513,349,015, so we replace 141,255,520,719,400,395 with 4,571,356,199,513,349,015 and begin again.
  • The first fraction in the program is 17/65. 4,571,356,199,513,349,015 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 4,571,356,199,513,349,015 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 4,571,356,199,513,349,015 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 4,571,356,199,513,349,015 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 4,571,356,199,513,349,015 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 4,571,356,199,513,349,015 multiplied by 23/29 is 3,625,558,365,131,276,805, so we replace 4,571,356,199,513,349,015 with 3,625,558,365,131,276,805 and begin again.
  • The first fraction in the program is 17/65. 3,625,558,365,131,276,805 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 3,625,558,365,131,276,805 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 3,625,558,365,131,276,805 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 3,625,558,365,131,276,805 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 3,625,558,365,131,276,805 multiplied by 2,233/69 is 117,331,475,787,509,291,385, so we replace 3,625,558,365,131,276,805 with 117,331,475,787,509,291,385 and begin again.
  • The first fraction in the program is 17/65. 117,331,475,787,509,291,385 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 117,331,475,787,509,291,385 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 117,331,475,787,509,291,385 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 117,331,475,787,509,291,385 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 117,331,475,787,509,291,385 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 117,331,475,787,509,291,385 multiplied by 23/29 is 93,055,998,038,369,437,995, so we replace 117,331,475,787,509,291,385 with 93,055,998,038,369,437,995 and begin again.
  • The first fraction in the program is 17/65. 93,055,998,038,369,437,995 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 93,055,998,038,369,437,995 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 93,055,998,038,369,437,995 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 93,055,998,038,369,437,995 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 93,055,998,038,369,437,995 multiplied by 2,233/69 is 3,011,507,878,546,071,812,215, so we replace 93,055,998,038,369,437,995 with 3,011,507,878,546,071,812,215 and begin again.
  • The first fraction in the program is 17/65. 3,011,507,878,546,071,812,215 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 3,011,507,878,546,071,812,215 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 3,011,507,878,546,071,812,215 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 3,011,507,878,546,071,812,215 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 3,011,507,878,546,071,812,215 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 3,011,507,878,546,071,812,215 multiplied by 23/29 is 2,388,437,282,984,815,575,205, so we replace 3,011,507,878,546,071,812,215 with 2,388,437,282,984,815,575,205 and begin again.
  • The first fraction in the program is 17/65. 2,388,437,282,984,815,575,205 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 2,388,437,282,984,815,575,205 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 2,388,437,282,984,815,575,205 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 2,388,437,282,984,815,575,205 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 2,388,437,282,984,815,575,205 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 2,388,437,282,984,815,575,205 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 2,388,437,282,984,815,575,205 multiplied by 31/23 is 3,219,198,077,066,490,557,885, so we replace 2,388,437,282,984,815,575,205 with 3,219,198,077,066,490,557,885 and begin again.
  • The first fraction in the program is 17/65. 3,219,198,077,066,490,557,885 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 3,219,198,077,066,490,557,885 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 3,219,198,077,066,490,557,885 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 3,219,198,077,066,490,557,885 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 3,219,198,077,066,490,557,885 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 3,219,198,077,066,490,557,885 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 3,219,198,077,066,490,557,885 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 3,219,198,077,066,490,557,885 multiplied by 74/341 is 698,594,304,114,135,780,890, so we replace 3,219,198,077,066,490,557,885 with 698,594,304,114,135,780,890 and begin again.
  • The first fraction in the program is 17/65. 698,594,304,114,135,780,890 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 698,594,304,114,135,780,890 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 698,594,304,114,135,780,890 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 698,594,304,114,135,780,890 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 698,594,304,114,135,780,890 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 698,594,304,114,135,780,890 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 698,594,304,114,135,780,890 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 698,594,304,114,135,780,890 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 698,594,304,114,135,780,890 multiplied by 31/37 is 585,308,741,284,816,465,070, so we replace 698,594,304,114,135,780,890 with 585,308,741,284,816,465,070 and begin again.
  • The first fraction in the program is 17/65. 585,308,741,284,816,465,070 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 585,308,741,284,816,465,070 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 585,308,741,284,816,465,070 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 585,308,741,284,816,465,070 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 585,308,741,284,816,465,070 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 585,308,741,284,816,465,070 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 585,308,741,284,816,465,070 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 585,308,741,284,816,465,070 multiplied by 74/341 is 127,017,146,202,570,141,980, so we replace 585,308,741,284,816,465,070 with 127,017,146,202,570,141,980 and begin again.
  • The first fraction in the program is 17/65. 127,017,146,202,570,141,980 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 127,017,146,202,570,141,980 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 127,017,146,202,570,141,980 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 127,017,146,202,570,141,980 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 127,017,146,202,570,141,980 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 127,017,146,202,570,141,980 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 127,017,146,202,570,141,980 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 127,017,146,202,570,141,980 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 127,017,146,202,570,141,980 multiplied by 31/37 is 106,419,771,142,693,902,740, so we replace 127,017,146,202,570,141,980 with 106,419,771,142,693,902,740 and begin again.
  • The first fraction in the program is 17/65. 106,419,771,142,693,902,740 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 106,419,771,142,693,902,740 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 106,419,771,142,693,902,740 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 106,419,771,142,693,902,740 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 106,419,771,142,693,902,740 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 106,419,771,142,693,902,740 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 106,419,771,142,693,902,740 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 106,419,771,142,693,902,740 multiplied by 74/341 is 23,094,026,582,285,480,360, so we replace 106,419,771,142,693,902,740 with 23,094,026,582,285,480,360 and begin again.
  • The first fraction in the program is 17/65. 23,094,026,582,285,480,360 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 23,094,026,582,285,480,360 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 23,094,026,582,285,480,360 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 23,094,026,582,285,480,360 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 23,094,026,582,285,480,360 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 23,094,026,582,285,480,360 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 23,094,026,582,285,480,360 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 23,094,026,582,285,480,360 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 23,094,026,582,285,480,360 multiplied by 31/37 is 19,349,049,298,671,618,680, so we replace 23,094,026,582,285,480,360 with 19,349,049,298,671,618,680 and begin again.
  • The first fraction in the program is 17/65. 19,349,049,298,671,618,680 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 19,349,049,298,671,618,680 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 19,349,049,298,671,618,680 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 19,349,049,298,671,618,680 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 19,349,049,298,671,618,680 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 19,349,049,298,671,618,680 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 19,349,049,298,671,618,680 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 19,349,049,298,671,618,680 multiplied by 74/341 is 4,198,913,924,051,905,520, so we replace 19,349,049,298,671,618,680 with 4,198,913,924,051,905,520 and begin again.
  • The first fraction in the program is 17/65. 4,198,913,924,051,905,520 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 4,198,913,924,051,905,520 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 4,198,913,924,051,905,520 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 4,198,913,924,051,905,520 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 4,198,913,924,051,905,520 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 4,198,913,924,051,905,520 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 4,198,913,924,051,905,520 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 4,198,913,924,051,905,520 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 4,198,913,924,051,905,520 multiplied by 31/37 is 3,518,008,963,394,839,760, so we replace 4,198,913,924,051,905,520 with 3,518,008,963,394,839,760 and begin again.
  • The first fraction in the program is 17/65. 3,518,008,963,394,839,760 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 3,518,008,963,394,839,760 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 3,518,008,963,394,839,760 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 3,518,008,963,394,839,760 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 3,518,008,963,394,839,760 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 3,518,008,963,394,839,760 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 3,518,008,963,394,839,760 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 3,518,008,963,394,839,760 multiplied by 74/341 is 763,438,895,282,164,640, so we replace 3,518,008,963,394,839,760 with 763,438,895,282,164,640 and begin again.
  • The first fraction in the program is 17/65. 763,438,895,282,164,640 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 763,438,895,282,164,640 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 763,438,895,282,164,640 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 763,438,895,282,164,640 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 763,438,895,282,164,640 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 763,438,895,282,164,640 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 763,438,895,282,164,640 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 763,438,895,282,164,640 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 763,438,895,282,164,640 multiplied by 31/37 is 639,637,993,344,516,320, so we replace 763,438,895,282,164,640 with 639,637,993,344,516,320 and begin again.
  • The first fraction in the program is 17/65. 639,637,993,344,516,320 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 639,637,993,344,516,320 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 639,637,993,344,516,320 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 639,637,993,344,516,320 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 639,637,993,344,516,320 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 639,637,993,344,516,320 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 639,637,993,344,516,320 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 639,637,993,344,516,320 multiplied by 74/341 is 138,807,071,869,484,480, so we replace 639,637,993,344,516,320 with 138,807,071,869,484,480 and begin again.
  • The first fraction in the program is 17/65. 138,807,071,869,484,480 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 138,807,071,869,484,480 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 138,807,071,869,484,480 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 138,807,071,869,484,480 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 138,807,071,869,484,480 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 138,807,071,869,484,480 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 138,807,071,869,484,480 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 138,807,071,869,484,480 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 138,807,071,869,484,480 multiplied by 31/37 is 116,297,816,971,730,240, so we replace 138,807,071,869,484,480 with 116,297,816,971,730,240 and begin again.
  • The first fraction in the program is 17/65. 116,297,816,971,730,240 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 116,297,816,971,730,240 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 116,297,816,971,730,240 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 116,297,816,971,730,240 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 116,297,816,971,730,240 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 116,297,816,971,730,240 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 116,297,816,971,730,240 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 116,297,816,971,730,240 multiplied by 74/341 is 25,237,649,430,815,360, so we replace 116,297,816,971,730,240 with 25,237,649,430,815,360 and begin again.
  • The first fraction in the program is 17/65. 25,237,649,430,815,360 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 25,237,649,430,815,360 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 25,237,649,430,815,360 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 25,237,649,430,815,360 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 25,237,649,430,815,360 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 25,237,649,430,815,360 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 25,237,649,430,815,360 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 25,237,649,430,815,360 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 25,237,649,430,815,360 multiplied by 31/37 is 21,145,057,631,223,680, so we replace 25,237,649,430,815,360 with 21,145,057,631,223,680 and begin again.
  • The first fraction in the program is 17/65. 21,145,057,631,223,680 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 21,145,057,631,223,680 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 21,145,057,631,223,680 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 21,145,057,631,223,680 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 21,145,057,631,223,680 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 21,145,057,631,223,680 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 21,145,057,631,223,680 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 21,145,057,631,223,680 multiplied by 74/341 is 4,588,663,532,875,520, so we replace 21,145,057,631,223,680 with 4,588,663,532,875,520 and begin again.
  • The first fraction in the program is 17/65. 4,588,663,532,875,520 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 4,588,663,532,875,520 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 4,588,663,532,875,520 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 4,588,663,532,875,520 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 4,588,663,532,875,520 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 4,588,663,532,875,520 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 4,588,663,532,875,520 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 4,588,663,532,875,520 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 4,588,663,532,875,520 multiplied by 31/37 is 3,844,555,932,949,760, so we replace 4,588,663,532,875,520 with 3,844,555,932,949,760 and begin again.
  • The first fraction in the program is 17/65. 3,844,555,932,949,760 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 3,844,555,932,949,760 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 3,844,555,932,949,760 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 3,844,555,932,949,760 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 3,844,555,932,949,760 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 3,844,555,932,949,760 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 3,844,555,932,949,760 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 3,844,555,932,949,760 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 3,844,555,932,949,760 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 3,844,555,932,949,760 multiplied by 41/31 is 5,084,735,266,159,360, so we replace 3,844,555,932,949,760 with 5,084,735,266,159,360 and begin again.
  • The first fraction in the program is 17/65. 5,084,735,266,159,360 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 5,084,735,266,159,360 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 5,084,735,266,159,360 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 5,084,735,266,159,360 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 5,084,735,266,159,360 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 5,084,735,266,159,360 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 5,084,735,266,159,360 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 5,084,735,266,159,360 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 5,084,735,266,159,360 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 5,084,735,266,159,360 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 5,084,735,266,159,360 multiplied by 129/287 is 2,285,473,342,629,120, so we replace 5,084,735,266,159,360 with 2,285,473,342,629,120 and begin again.
  • The first fraction in the program is 17/65. 2,285,473,342,629,120 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 2,285,473,342,629,120 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 2,285,473,342,629,120 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 2,285,473,342,629,120 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 2,285,473,342,629,120 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 2,285,473,342,629,120 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 2,285,473,342,629,120 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 2,285,473,342,629,120 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 2,285,473,342,629,120 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 2,285,473,342,629,120 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 2,285,473,342,629,120 leaves a remainder when divided by 287, so we move on.
  • The next fraction in the program is 41/43. 2,285,473,342,629,120 multiplied by 41/43 is 2,179,172,256,925,440, so we replace 2,285,473,342,629,120 with 2,179,172,256,925,440 and begin again.
  • The first fraction in the program is 17/65. 2,179,172,256,925,440 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 2,179,172,256,925,440 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 2,179,172,256,925,440 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 2,179,172,256,925,440 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 2,179,172,256,925,440 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 2,179,172,256,925,440 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 2,179,172,256,925,440 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 2,179,172,256,925,440 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 2,179,172,256,925,440 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 2,179,172,256,925,440 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 2,179,172,256,925,440 multiplied by 129/287 is 979,488,575,412,480, so we replace 2,179,172,256,925,440 with 979,488,575,412,480 and begin again.
  • The first fraction in the program is 17/65. 979,488,575,412,480 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 979,488,575,412,480 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 979,488,575,412,480 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 979,488,575,412,480 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 979,488,575,412,480 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 979,488,575,412,480 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 979,488,575,412,480 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 979,488,575,412,480 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 979,488,575,412,480 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 979,488,575,412,480 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 979,488,575,412,480 leaves a remainder when divided by 287, so we move on.
  • The next fraction in the program is 41/43. 979,488,575,412,480 multiplied by 41/43 is 933,930,967,253,760, so we replace 979,488,575,412,480 with 933,930,967,253,760 and begin again.
  • The first fraction in the program is 17/65. 933,930,967,253,760 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 933,930,967,253,760 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 933,930,967,253,760 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 933,930,967,253,760 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 933,930,967,253,760 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 933,930,967,253,760 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 933,930,967,253,760 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 933,930,967,253,760 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 933,930,967,253,760 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 933,930,967,253,760 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 933,930,967,253,760 multiplied by 129/287 is 419,780,818,033,920, so we replace 933,930,967,253,760 with 419,780,818,033,920 and begin again.
  • The first fraction in the program is 17/65. 419,780,818,033,920 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 419,780,818,033,920 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 419,780,818,033,920 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 419,780,818,033,920 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 419,780,818,033,920 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 419,780,818,033,920 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 419,780,818,033,920 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 419,780,818,033,920 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 419,780,818,033,920 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 419,780,818,033,920 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 419,780,818,033,920 leaves a remainder when divided by 287, so we move on.
  • The next fraction in the program is 41/43. 419,780,818,033,920 multiplied by 41/43 is 400,256,128,823,040, so we replace 419,780,818,033,920 with 400,256,128,823,040 and begin again.
  • The first fraction in the program is 17/65. 400,256,128,823,040 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 400,256,128,823,040 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 400,256,128,823,040 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 400,256,128,823,040 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 400,256,128,823,040 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 400,256,128,823,040 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 400,256,128,823,040 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 400,256,128,823,040 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 400,256,128,823,040 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 400,256,128,823,040 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 400,256,128,823,040 multiplied by 129/287 is 179,906,064,871,680, so we replace 400,256,128,823,040 with 179,906,064,871,680 and begin again.
  • The first fraction in the program is 17/65. 179,906,064,871,680 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 179,906,064,871,680 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 179,906,064,871,680 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 179,906,064,871,680 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 179,906,064,871,680 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 179,906,064,871,680 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 179,906,064,871,680 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 179,906,064,871,680 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 179,906,064,871,680 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 179,906,064,871,680 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 179,906,064,871,680 leaves a remainder when divided by 287, so we move on.
  • The next fraction in the program is 41/43. 179,906,064,871,680 multiplied by 41/43 is 171,538,340,924,160, so we replace 179,906,064,871,680 with 171,538,340,924,160 and begin again.
  • The first fraction in the program is 17/65. 171,538,340,924,160 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 171,538,340,924,160 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 171,538,340,924,160 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 171,538,340,924,160 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 171,538,340,924,160 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 171,538,340,924,160 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 171,538,340,924,160 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 171,538,340,924,160 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 171,538,340,924,160 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 171,538,340,924,160 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 171,538,340,924,160 multiplied by 129/287 is 77,102,599,230,720, so we replace 171,538,340,924,160 with 77,102,599,230,720 and begin again.
  • The first fraction in the program is 17/65. 77,102,599,230,720 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 77,102,599,230,720 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 77,102,599,230,720 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 77,102,599,230,720 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 77,102,599,230,720 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 77,102,599,230,720 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 77,102,599,230,720 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 77,102,599,230,720 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 77,102,599,230,720 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 77,102,599,230,720 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 77,102,599,230,720 leaves a remainder when divided by 287, so we move on.
  • The next fraction in the program is 41/43. 77,102,599,230,720 multiplied by 41/43 is 73,516,431,824,640, so we replace 77,102,599,230,720 with 73,516,431,824,640 and begin again.
  • The first fraction in the program is 17/65. 73,516,431,824,640 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 73,516,431,824,640 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 73,516,431,824,640 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 73,516,431,824,640 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 73,516,431,824,640 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 73,516,431,824,640 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 73,516,431,824,640 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 73,516,431,824,640 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 73,516,431,824,640 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 73,516,431,824,640 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 73,516,431,824,640 multiplied by 129/287 is 33,043,971,098,880, so we replace 73,516,431,824,640 with 33,043,971,098,880 and begin again.
  • The first fraction in the program is 17/65. 33,043,971,098,880 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 33,043,971,098,880 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 33,043,971,098,880 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 33,043,971,098,880 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 33,043,971,098,880 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 33,043,971,098,880 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 33,043,971,098,880 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 33,043,971,098,880 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 33,043,971,098,880 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 33,043,971,098,880 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 33,043,971,098,880 leaves a remainder when divided by 287, so we move on.
  • The next fraction in the program is 41/43. 33,043,971,098,880 multiplied by 41/43 is 31,507,042,210,560, so we replace 33,043,971,098,880 with 31,507,042,210,560 and begin again.
  • The first fraction in the program is 17/65. 31,507,042,210,560 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 31,507,042,210,560 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 31,507,042,210,560 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 31,507,042,210,560 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 31,507,042,210,560 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 31,507,042,210,560 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 31,507,042,210,560 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 31,507,042,210,560 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 31,507,042,210,560 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 31,507,042,210,560 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 31,507,042,210,560 multiplied by 129/287 is 14,161,701,899,520, so we replace 31,507,042,210,560 with 14,161,701,899,520 and begin again.
  • The first fraction in the program is 17/65. 14,161,701,899,520 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 14,161,701,899,520 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 14,161,701,899,520 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 14,161,701,899,520 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 14,161,701,899,520 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 14,161,701,899,520 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 14,161,701,899,520 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 14,161,701,899,520 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 14,161,701,899,520 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 14,161,701,899,520 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 14,161,701,899,520 leaves a remainder when divided by 287, so we move on.
  • The next fraction in the program is 41/43. 14,161,701,899,520 multiplied by 41/43 is 13,503,018,090,240, so we replace 14,161,701,899,520 with 13,503,018,090,240 and begin again.
  • The first fraction in the program is 17/65. 13,503,018,090,240 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 13,503,018,090,240 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 13,503,018,090,240 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 13,503,018,090,240 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 13,503,018,090,240 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 13,503,018,090,240 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 13,503,018,090,240 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 13,503,018,090,240 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 13,503,018,090,240 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 13,503,018,090,240 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 13,503,018,090,240 multiplied by 129/287 is 6,069,300,814,080, so we replace 13,503,018,090,240 with 6,069,300,814,080 and begin again.
  • The first fraction in the program is 17/65. 6,069,300,814,080 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 6,069,300,814,080 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 6,069,300,814,080 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 6,069,300,814,080 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 6,069,300,814,080 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 6,069,300,814,080 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 6,069,300,814,080 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 6,069,300,814,080 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 6,069,300,814,080 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 6,069,300,814,080 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 6,069,300,814,080 leaves a remainder when divided by 287, so we move on.
  • The next fraction in the program is 41/43. 6,069,300,814,080 multiplied by 41/43 is 5,787,007,752,960, so we replace 6,069,300,814,080 with 5,787,007,752,960 and begin again.
  • The first fraction in the program is 17/65. 5,787,007,752,960 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 5,787,007,752,960 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 5,787,007,752,960 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 5,787,007,752,960 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 5,787,007,752,960 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 5,787,007,752,960 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 5,787,007,752,960 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 5,787,007,752,960 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 5,787,007,752,960 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 5,787,007,752,960 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 5,787,007,752,960 multiplied by 129/287 is 2,601,128,920,320, so we replace 5,787,007,752,960 with 2,601,128,920,320 and begin again.
  • The first fraction in the program is 17/65. 2,601,128,920,320 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 2,601,128,920,320 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 2,601,128,920,320 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 2,601,128,920,320 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 2,601,128,920,320 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 2,601,128,920,320 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 2,601,128,920,320 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 2,601,128,920,320 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 2,601,128,920,320 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 2,601,128,920,320 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 2,601,128,920,320 leaves a remainder when divided by 287, so we move on.
  • The next fraction in the program is 41/43. 2,601,128,920,320 multiplied by 41/43 is 2,480,146,179,840, so we replace 2,601,128,920,320 with 2,480,146,179,840 and begin again.
  • The first fraction in the program is 17/65. 2,480,146,179,840 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 2,480,146,179,840 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 2,480,146,179,840 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 2,480,146,179,840 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 2,480,146,179,840 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 2,480,146,179,840 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 2,480,146,179,840 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 2,480,146,179,840 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 2,480,146,179,840 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 2,480,146,179,840 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 2,480,146,179,840 multiplied by 129/287 is 1,114,769,537,280, so we replace 2,480,146,179,840 with 1,114,769,537,280 and begin again.
  • The first fraction in the program is 17/65. 1,114,769,537,280 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 1,114,769,537,280 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 1,114,769,537,280 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 1,114,769,537,280 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 1,114,769,537,280 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 1,114,769,537,280 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 1,114,769,537,280 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 1,114,769,537,280 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 1,114,769,537,280 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 1,114,769,537,280 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 1,114,769,537,280 leaves a remainder when divided by 287, so we move on.
  • The next fraction in the program is 41/43. 1,114,769,537,280 multiplied by 41/43 is 1,062,919,791,360, so we replace 1,114,769,537,280 with 1,062,919,791,360 and begin again.
  • The first fraction in the program is 17/65. 1,062,919,791,360 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 1,062,919,791,360 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 1,062,919,791,360 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 1,062,919,791,360 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 1,062,919,791,360 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 1,062,919,791,360 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 1,062,919,791,360 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 1,062,919,791,360 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 1,062,919,791,360 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 1,062,919,791,360 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 1,062,919,791,360 multiplied by 129/287 is 477,758,373,120, so we replace 1,062,919,791,360 with 477,758,373,120 and begin again.
  • The first fraction in the program is 17/65. 477,758,373,120 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 477,758,373,120 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 477,758,373,120 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 477,758,373,120 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 477,758,373,120 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 477,758,373,120 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 477,758,373,120 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 477,758,373,120 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 477,758,373,120 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 477,758,373,120 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 477,758,373,120 leaves a remainder when divided by 287, so we move on.
  • The next fraction in the program is 41/43. 477,758,373,120 multiplied by 41/43 is 455,537,053,440, so we replace 477,758,373,120 with 455,537,053,440 and begin again.
  • The first fraction in the program is 17/65. 455,537,053,440 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 455,537,053,440 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 455,537,053,440 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 455,537,053,440 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 455,537,053,440 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 455,537,053,440 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 455,537,053,440 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 455,537,053,440 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 455,537,053,440 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 455,537,053,440 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 455,537,053,440 multiplied by 129/287 is 204,753,588,480, so we replace 455,537,053,440 with 204,753,588,480 and begin again.
  • The first fraction in the program is 17/65. 204,753,588,480 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 204,753,588,480 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 204,753,588,480 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 204,753,588,480 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 204,753,588,480 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 204,753,588,480 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 204,753,588,480 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 204,753,588,480 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 204,753,588,480 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 204,753,588,480 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 204,753,588,480 leaves a remainder when divided by 287, so we move on.
  • The next fraction in the program is 41/43. 204,753,588,480 multiplied by 41/43 is 195,230,165,760, so we replace 204,753,588,480 with 195,230,165,760 and begin again.
  • The first fraction in the program is 17/65. 195,230,165,760 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 195,230,165,760 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 195,230,165,760 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 195,230,165,760 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 195,230,165,760 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 195,230,165,760 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 195,230,165,760 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 195,230,165,760 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 195,230,165,760 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 195,230,165,760 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 195,230,165,760 multiplied by 129/287 is 87,751,537,920, so we replace 195,230,165,760 with 87,751,537,920 and begin again.
  • The first fraction in the program is 17/65. 87,751,537,920 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 87,751,537,920 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 87,751,537,920 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 87,751,537,920 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 87,751,537,920 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 87,751,537,920 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 87,751,537,920 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 87,751,537,920 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 87,751,537,920 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 87,751,537,920 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 87,751,537,920 leaves a remainder when divided by 287, so we move on.
  • The next fraction in the program is 41/43. 87,751,537,920 multiplied by 41/43 is 83,670,071,040, so we replace 87,751,537,920 with 83,670,071,040 and begin again.
  • The first fraction in the program is 17/65. 83,670,071,040 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 83,670,071,040 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 83,670,071,040 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 83,670,071,040 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 83,670,071,040 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 83,670,071,040 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 83,670,071,040 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 83,670,071,040 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 83,670,071,040 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 83,670,071,040 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 83,670,071,040 leaves a remainder when divided by 287, so we move on.
  • The next fraction in the program is 41/43. 83,670,071,040 leaves a remainder when divided by 43, so we move on.
  • The next fraction in the program is 13/41. 83,670,071,040 multiplied by 13/41 is 26,529,534,720, so we replace 83,670,071,040 with 26,529,534,720 and begin again.
  • The first fraction in the program is 17/65. 26,529,534,720 multiplied by 17/65 is 6,938,493,696, so we replace 26,529,534,720 with 6,938,493,696 and begin again.
  • The first fraction in the program is 17/65. 6,938,493,696 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 6,938,493,696 multiplied by 133/34 is 27,141,754,752, so we replace 6,938,493,696 with 27,141,754,752 and begin again.
  • The first fraction in the program is 17/65. 27,141,754,752 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 27,141,754,752 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 27,141,754,752 multiplied by 17/19 is 24,284,727,936, so we replace 27,141,754,752 with 24,284,727,936 and begin again.
  • The first fraction in the program is 17/65. 24,284,727,936 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 24,284,727,936 multiplied by 133/34 is 94,996,141,632, so we replace 24,284,727,936 with 94,996,141,632 and begin again.
  • The first fraction in the program is 17/65. 94,996,141,632 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 94,996,141,632 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 94,996,141,632 multiplied by 17/19 is 84,996,547,776, so we replace 94,996,141,632 with 84,996,547,776 and begin again.
  • The first fraction in the program is 17/65. 84,996,547,776 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 84,996,547,776 multiplied by 133/34 is 332,486,495,712, so we replace 84,996,547,776 with 332,486,495,712 and begin again.
  • The first fraction in the program is 17/65. 332,486,495,712 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 332,486,495,712 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 332,486,495,712 multiplied by 17/19 is 297,487,917,216, so we replace 332,486,495,712 with 297,487,917,216 and begin again.
  • The first fraction in the program is 17/65. 297,487,917,216 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 297,487,917,216 multiplied by 133/34 is 1,163,702,734,992, so we replace 297,487,917,216 with 1,163,702,734,992 and begin again.
  • The first fraction in the program is 17/65. 1,163,702,734,992 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 1,163,702,734,992 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 1,163,702,734,992 multiplied by 17/19 is 1,041,207,710,256, so we replace 1,163,702,734,992 with 1,041,207,710,256 and begin again.
  • The first fraction in the program is 17/65. 1,041,207,710,256 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 1,041,207,710,256 multiplied by 133/34 is 4,072,959,572,472, so we replace 1,041,207,710,256 with 4,072,959,572,472 and begin again.
  • The first fraction in the program is 17/65. 4,072,959,572,472 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 4,072,959,572,472 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 4,072,959,572,472 multiplied by 17/19 is 3,644,226,985,896, so we replace 4,072,959,572,472 with 3,644,226,985,896 and begin again.
  • The first fraction in the program is 17/65. 3,644,226,985,896 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 3,644,226,985,896 multiplied by 133/34 is 14,255,358,503,652, so we replace 3,644,226,985,896 with 14,255,358,503,652 and begin again.
  • The first fraction in the program is 17/65. 14,255,358,503,652 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 14,255,358,503,652 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 14,255,358,503,652 multiplied by 17/19 is 12,754,794,450,636, so we replace 14,255,358,503,652 with 12,754,794,450,636 and begin again.
  • The first fraction in the program is 17/65. 12,754,794,450,636 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 12,754,794,450,636 multiplied by 133/34 is 49,893,754,762,782, so we replace 12,754,794,450,636 with 49,893,754,762,782 and begin again.
  • The first fraction in the program is 17/65. 49,893,754,762,782 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 49,893,754,762,782 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 49,893,754,762,782 multiplied by 17/19 is 44,641,780,577,226, so we replace 49,893,754,762,782 with 44,641,780,577,226 and begin again.
  • The first fraction in the program is 17/65. 44,641,780,577,226 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 44,641,780,577,226 multiplied by 133/34 is 174,628,141,669,737, so we replace 44,641,780,577,226 with 174,628,141,669,737 and begin again.
  • The first fraction in the program is 17/65. 174,628,141,669,737 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 174,628,141,669,737 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 174,628,141,669,737 multiplied by 17/19 is 156,246,232,020,291, so we replace 174,628,141,669,737 with 156,246,232,020,291 and begin again.
  • The first fraction in the program is 17/65. 156,246,232,020,291 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 156,246,232,020,291 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 156,246,232,020,291 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 156,246,232,020,291 multiplied by 23/17 is 211,391,960,968,629, so we replace 156,246,232,020,291 with 211,391,960,968,629 and begin again.
  • The first fraction in the program is 17/65. 211,391,960,968,629 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 211,391,960,968,629 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 211,391,960,968,629 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 211,391,960,968,629 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 211,391,960,968,629 multiplied by 2,233/69 is 6,841,134,041,202,153, so we replace 211,391,960,968,629 with 6,841,134,041,202,153 and begin again.
  • The first fraction in the program is 17/65. 6,841,134,041,202,153 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 6,841,134,041,202,153 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 6,841,134,041,202,153 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 6,841,134,041,202,153 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 6,841,134,041,202,153 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 6,841,134,041,202,153 multiplied by 23/29 is 5,425,726,998,194,811, so we replace 6,841,134,041,202,153 with 5,425,726,998,194,811 and begin again.
  • The first fraction in the program is 17/65. 5,425,726,998,194,811 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 5,425,726,998,194,811 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 5,425,726,998,194,811 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 5,425,726,998,194,811 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 5,425,726,998,194,811 multiplied by 2,233/69 is 175,589,107,057,521,927, so we replace 5,425,726,998,194,811 with 175,589,107,057,521,927 and begin again.
  • The first fraction in the program is 17/65. 175,589,107,057,521,927 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 175,589,107,057,521,927 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 175,589,107,057,521,927 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 175,589,107,057,521,927 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 175,589,107,057,521,927 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 175,589,107,057,521,927 multiplied by 23/29 is 139,260,326,287,000,149, so we replace 175,589,107,057,521,927 with 139,260,326,287,000,149 and begin again.
  • The first fraction in the program is 17/65. 139,260,326,287,000,149 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 139,260,326,287,000,149 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 139,260,326,287,000,149 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 139,260,326,287,000,149 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 139,260,326,287,000,149 multiplied by 2,233/69 is 4,506,787,081,143,062,793, so we replace 139,260,326,287,000,149 with 4,506,787,081,143,062,793 and begin again.
  • The first fraction in the program is 17/65. 4,506,787,081,143,062,793 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 4,506,787,081,143,062,793 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 4,506,787,081,143,062,793 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 4,506,787,081,143,062,793 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 4,506,787,081,143,062,793 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 4,506,787,081,143,062,793 multiplied by 23/29 is 3,574,348,374,699,670,491, so we replace 4,506,787,081,143,062,793 with 3,574,348,374,699,670,491 and begin again.
  • The first fraction in the program is 17/65. 3,574,348,374,699,670,491 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 3,574,348,374,699,670,491 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 3,574,348,374,699,670,491 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 3,574,348,374,699,670,491 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 3,574,348,374,699,670,491 multiplied by 2,233/69 is 115,674,201,749,338,611,687, so we replace 3,574,348,374,699,670,491 with 115,674,201,749,338,611,687 and begin again.
  • The first fraction in the program is 17/65. 115,674,201,749,338,611,687 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 115,674,201,749,338,611,687 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 115,674,201,749,338,611,687 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 115,674,201,749,338,611,687 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 115,674,201,749,338,611,687 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 115,674,201,749,338,611,687 multiplied by 23/29 is 91,741,608,283,958,209,269, so we replace 115,674,201,749,338,611,687 with 91,741,608,283,958,209,269 and begin again.
  • The first fraction in the program is 17/65. 91,741,608,283,958,209,269 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 91,741,608,283,958,209,269 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 91,741,608,283,958,209,269 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 91,741,608,283,958,209,269 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 91,741,608,283,958,209,269 multiplied by 2,233/69 is 2,968,971,178,233,024,366,633, so we replace 91,741,608,283,958,209,269 with 2,968,971,178,233,024,366,633 and begin again.
  • The first fraction in the program is 17/65. 2,968,971,178,233,024,366,633 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 2,968,971,178,233,024,366,633 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 2,968,971,178,233,024,366,633 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 2,968,971,178,233,024,366,633 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 2,968,971,178,233,024,366,633 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 2,968,971,178,233,024,366,633 multiplied by 23/29 is 2,354,701,279,288,260,704,571, so we replace 2,968,971,178,233,024,366,633 with 2,354,701,279,288,260,704,571 and begin again.
  • The first fraction in the program is 17/65. 2,354,701,279,288,260,704,571 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 2,354,701,279,288,260,704,571 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 2,354,701,279,288,260,704,571 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 2,354,701,279,288,260,704,571 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 2,354,701,279,288,260,704,571 multiplied by 2,233/69 is 76,203,593,574,647,625,410,247, so we replace 2,354,701,279,288,260,704,571 with 76,203,593,574,647,625,410,247 and begin again.
  • The first fraction in the program is 17/65. 76,203,593,574,647,625,410,247 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 76,203,593,574,647,625,410,247 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 76,203,593,574,647,625,410,247 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 76,203,593,574,647,625,410,247 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 76,203,593,574,647,625,410,247 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 76,203,593,574,647,625,410,247 multiplied by 23/29 is 60,437,332,835,065,358,083,989, so we replace 76,203,593,574,647,625,410,247 with 60,437,332,835,065,358,083,989 and begin again.
  • The first fraction in the program is 17/65. 60,437,332,835,065,358,083,989 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 60,437,332,835,065,358,083,989 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 60,437,332,835,065,358,083,989 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 60,437,332,835,065,358,083,989 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 60,437,332,835,065,358,083,989 multiplied by 2,233/69 is 1,955,892,235,082,622,385,529,673, so we replace 60,437,332,835,065,358,083,989 with 1,955,892,235,082,622,385,529,673 and begin again.
  • The first fraction in the program is 17/65. 1,955,892,235,082,622,385,529,673 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 1,955,892,235,082,622,385,529,673 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 1,955,892,235,082,622,385,529,673 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 1,955,892,235,082,622,385,529,673 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 1,955,892,235,082,622,385,529,673 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 1,955,892,235,082,622,385,529,673 multiplied by 23/29 is 1,551,224,876,100,010,857,489,051, so we replace 1,955,892,235,082,622,385,529,673 with 1,551,224,876,100,010,857,489,051 and begin again.
  • The first fraction in the program is 17/65. 1,551,224,876,100,010,857,489,051 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 1,551,224,876,100,010,857,489,051 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 1,551,224,876,100,010,857,489,051 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 1,551,224,876,100,010,857,489,051 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 1,551,224,876,100,010,857,489,051 multiplied by 2,233/69 is 50,201,234,033,787,307,895,261,607, so we replace 1,551,224,876,100,010,857,489,051 with 50,201,234,033,787,307,895,261,607 and begin again.
  • The first fraction in the program is 17/65. 50,201,234,033,787,307,895,261,607 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 50,201,234,033,787,307,895,261,607 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 50,201,234,033,787,307,895,261,607 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 50,201,234,033,787,307,895,261,607 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 50,201,234,033,787,307,895,261,607 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 50,201,234,033,787,307,895,261,607 multiplied by 23/29 is 39,814,771,819,900,278,675,552,309, so we replace 50,201,234,033,787,307,895,261,607 with 39,814,771,819,900,278,675,552,309 and begin again.
  • The first fraction in the program is 17/65. 39,814,771,819,900,278,675,552,309 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 39,814,771,819,900,278,675,552,309 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 39,814,771,819,900,278,675,552,309 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 39,814,771,819,900,278,675,552,309 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 39,814,771,819,900,278,675,552,309 multiplied by 2,233/69 is 1,288,498,340,200,540,902,645,047,913, so we replace 39,814,771,819,900,278,675,552,309 with 1,288,498,340,200,540,902,645,047,913 and begin again.
  • The first fraction in the program is 17/65. 1,288,498,340,200,540,902,645,047,913 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 1,288,498,340,200,540,902,645,047,913 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 1,288,498,340,200,540,902,645,047,913 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 1,288,498,340,200,540,902,645,047,913 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 1,288,498,340,200,540,902,645,047,913 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 1,288,498,340,200,540,902,645,047,913 multiplied by 23/29 is 1,021,912,476,710,773,819,339,175,931, so we replace 1,288,498,340,200,540,902,645,047,913 with 1,021,912,476,710,773,819,339,175,931 and begin again.
  • The first fraction in the program is 17/65. 1,021,912,476,710,773,819,339,175,931 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 1,021,912,476,710,773,819,339,175,931 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 1,021,912,476,710,773,819,339,175,931 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 1,021,912,476,710,773,819,339,175,931 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 1,021,912,476,710,773,819,339,175,931 multiplied by 2,233/69 is 33,071,457,398,480,549,834,556,229,767, so we replace 1,021,912,476,710,773,819,339,175,931 with 33,071,457,398,480,549,834,556,229,767 and begin again.
  • The first fraction in the program is 17/65. 33,071,457,398,480,549,834,556,229,767 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 33,071,457,398,480,549,834,556,229,767 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 33,071,457,398,480,549,834,556,229,767 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 33,071,457,398,480,549,834,556,229,767 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 33,071,457,398,480,549,834,556,229,767 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 33,071,457,398,480,549,834,556,229,767 multiplied by 23/29 is 26,229,086,902,243,194,696,372,182,229, so we replace 33,071,457,398,480,549,834,556,229,767 with 26,229,086,902,243,194,696,372,182,229 and begin again.
  • The first fraction in the program is 17/65. 26,229,086,902,243,194,696,372,182,229 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 26,229,086,902,243,194,696,372,182,229 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 26,229,086,902,243,194,696,372,182,229 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 26,229,086,902,243,194,696,372,182,229 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 26,229,086,902,243,194,696,372,182,229 multiplied by 2,233/69 is 848,834,073,227,667,445,753,609,897,353, so we replace 26,229,086,902,243,194,696,372,182,229 with 848,834,073,227,667,445,753,609,897,353 and begin again.
  • The first fraction in the program is 17/65. 848,834,073,227,667,445,753,609,897,353 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 848,834,073,227,667,445,753,609,897,353 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 848,834,073,227,667,445,753,609,897,353 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 848,834,073,227,667,445,753,609,897,353 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 848,834,073,227,667,445,753,609,897,353 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 848,834,073,227,667,445,753,609,897,353 multiplied by 23/29 is 673,213,230,490,908,663,873,552,677,211, so we replace 848,834,073,227,667,445,753,609,897,353 with 673,213,230,490,908,663,873,552,677,211 and begin again.
  • The first fraction in the program is 17/65. 673,213,230,490,908,663,873,552,677,211 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 673,213,230,490,908,663,873,552,677,211 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 673,213,230,490,908,663,873,552,677,211 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 673,213,230,490,908,663,873,552,677,211 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 673,213,230,490,908,663,873,552,677,211 multiplied by 2,233/69 is 21,786,741,212,843,464,441,009,320,698,727, so we replace 673,213,230,490,908,663,873,552,677,211 with 21,786,741,212,843,464,441,009,320,698,727 and begin again.
  • The first fraction in the program is 17/65. 21,786,741,212,843,464,441,009,320,698,727 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 21,786,741,212,843,464,441,009,320,698,727 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 21,786,741,212,843,464,441,009,320,698,727 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 21,786,741,212,843,464,441,009,320,698,727 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 21,786,741,212,843,464,441,009,320,698,727 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 21,786,741,212,843,464,441,009,320,698,727 multiplied by 23/29 is 17,279,139,582,599,989,039,421,185,381,749, so we replace 21,786,741,212,843,464,441,009,320,698,727 with 17,279,139,582,599,989,039,421,185,381,749 and begin again.
  • The first fraction in the program is 17/65. 17,279,139,582,599,989,039,421,185,381,749 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 17,279,139,582,599,989,039,421,185,381,749 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 17,279,139,582,599,989,039,421,185,381,749 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 17,279,139,582,599,989,039,421,185,381,749 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 17,279,139,582,599,989,039,421,185,381,749 multiplied by 2,233/69 is 559,193,024,462,982,253,985,905,897,933,993, so we replace 17,279,139,582,599,989,039,421,185,381,749 with 559,193,024,462,982,253,985,905,897,933,993 and begin again.
  • The first fraction in the program is 17/65. 559,193,024,462,982,253,985,905,897,933,993 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 559,193,024,462,982,253,985,905,897,933,993 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 559,193,024,462,982,253,985,905,897,933,993 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 559,193,024,462,982,253,985,905,897,933,993 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 559,193,024,462,982,253,985,905,897,933,993 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 559,193,024,462,982,253,985,905,897,933,993 multiplied by 23/29 is 443,497,915,953,399,718,678,477,091,464,891, so we replace 559,193,024,462,982,253,985,905,897,933,993 with 443,497,915,953,399,718,678,477,091,464,891 and begin again.
  • The first fraction in the program is 17/65. 443,497,915,953,399,718,678,477,091,464,891 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 443,497,915,953,399,718,678,477,091,464,891 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 443,497,915,953,399,718,678,477,091,464,891 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 443,497,915,953,399,718,678,477,091,464,891 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 443,497,915,953,399,718,678,477,091,464,891 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 443,497,915,953,399,718,678,477,091,464,891 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 443,497,915,953,399,718,678,477,091,464,891 multiplied by 31/23 is 597,758,060,632,843,099,088,382,166,757,027, so we replace 443,497,915,953,399,718,678,477,091,464,891 with 597,758,060,632,843,099,088,382,166,757,027 and begin again.
  • The first fraction in the program is 17/65. 597,758,060,632,843,099,088,382,166,757,027 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 597,758,060,632,843,099,088,382,166,757,027 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 597,758,060,632,843,099,088,382,166,757,027 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 597,758,060,632,843,099,088,382,166,757,027 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 597,758,060,632,843,099,088,382,166,757,027 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 597,758,060,632,843,099,088,382,166,757,027 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 597,758,060,632,843,099,088,382,166,757,027 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 597,758,060,632,843,099,088,382,166,757,027 multiplied by 74/341 is 129,718,758,025,895,569,890,147,449,677,478, so we replace 597,758,060,632,843,099,088,382,166,757,027 with 129,718,758,025,895,569,890,147,449,677,478 and begin again.
  • The first fraction in the program is 17/65. 129,718,758,025,895,569,890,147,449,677,478 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 129,718,758,025,895,569,890,147,449,677,478 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 129,718,758,025,895,569,890,147,449,677,478 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 129,718,758,025,895,569,890,147,449,677,478 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 129,718,758,025,895,569,890,147,449,677,478 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 129,718,758,025,895,569,890,147,449,677,478 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 129,718,758,025,895,569,890,147,449,677,478 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 129,718,758,025,895,569,890,147,449,677,478 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 129,718,758,025,895,569,890,147,449,677,478 multiplied by 31/37 is 108,683,283,751,426,018,016,069,484,864,914, so we replace 129,718,758,025,895,569,890,147,449,677,478 with 108,683,283,751,426,018,016,069,484,864,914 and begin again.
  • The first fraction in the program is 17/65. 108,683,283,751,426,018,016,069,484,864,914 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 108,683,283,751,426,018,016,069,484,864,914 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 108,683,283,751,426,018,016,069,484,864,914 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 108,683,283,751,426,018,016,069,484,864,914 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 108,683,283,751,426,018,016,069,484,864,914 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 108,683,283,751,426,018,016,069,484,864,914 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 108,683,283,751,426,018,016,069,484,864,914 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 108,683,283,751,426,018,016,069,484,864,914 multiplied by 74/341 is 23,585,228,731,981,012,707,299,536,304,996, so we replace 108,683,283,751,426,018,016,069,484,864,914 with 23,585,228,731,981,012,707,299,536,304,996 and begin again.
  • The first fraction in the program is 17/65. 23,585,228,731,981,012,707,299,536,304,996 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 23,585,228,731,981,012,707,299,536,304,996 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 23,585,228,731,981,012,707,299,536,304,996 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 23,585,228,731,981,012,707,299,536,304,996 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 23,585,228,731,981,012,707,299,536,304,996 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 23,585,228,731,981,012,707,299,536,304,996 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 23,585,228,731,981,012,707,299,536,304,996 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 23,585,228,731,981,012,707,299,536,304,996 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 23,585,228,731,981,012,707,299,536,304,996 multiplied by 31/37 is 19,760,597,045,713,821,457,467,179,066,348, so we replace 23,585,228,731,981,012,707,299,536,304,996 with 19,760,597,045,713,821,457,467,179,066,348 and begin again.
  • The first fraction in the program is 17/65. 19,760,597,045,713,821,457,467,179,066,348 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 19,760,597,045,713,821,457,467,179,066,348 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 19,760,597,045,713,821,457,467,179,066,348 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 19,760,597,045,713,821,457,467,179,066,348 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 19,760,597,045,713,821,457,467,179,066,348 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 19,760,597,045,713,821,457,467,179,066,348 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 19,760,597,045,713,821,457,467,179,066,348 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 19,760,597,045,713,821,457,467,179,066,348 multiplied by 74/341 is 4,288,223,405,814,729,583,145,370,237,272, so we replace 19,760,597,045,713,821,457,467,179,066,348 with 4,288,223,405,814,729,583,145,370,237,272 and begin again.
  • The first fraction in the program is 17/65. 4,288,223,405,814,729,583,145,370,237,272 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 4,288,223,405,814,729,583,145,370,237,272 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 4,288,223,405,814,729,583,145,370,237,272 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 4,288,223,405,814,729,583,145,370,237,272 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 4,288,223,405,814,729,583,145,370,237,272 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 4,288,223,405,814,729,583,145,370,237,272 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 4,288,223,405,814,729,583,145,370,237,272 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 4,288,223,405,814,729,583,145,370,237,272 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 4,288,223,405,814,729,583,145,370,237,272 multiplied by 31/37 is 3,592,835,826,493,422,083,175,850,739,336, so we replace 4,288,223,405,814,729,583,145,370,237,272 with 3,592,835,826,493,422,083,175,850,739,336 and begin again.
  • The first fraction in the program is 17/65. 3,592,835,826,493,422,083,175,850,739,336 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 3,592,835,826,493,422,083,175,850,739,336 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 3,592,835,826,493,422,083,175,850,739,336 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 3,592,835,826,493,422,083,175,850,739,336 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 3,592,835,826,493,422,083,175,850,739,336 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 3,592,835,826,493,422,083,175,850,739,336 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 3,592,835,826,493,422,083,175,850,739,336 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 3,592,835,826,493,422,083,175,850,739,336 multiplied by 74/341 is 779,676,982,875,405,378,753,703,679,504, so we replace 3,592,835,826,493,422,083,175,850,739,336 with 779,676,982,875,405,378,753,703,679,504 and begin again.
  • The first fraction in the program is 17/65. 779,676,982,875,405,378,753,703,679,504 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 779,676,982,875,405,378,753,703,679,504 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 779,676,982,875,405,378,753,703,679,504 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 779,676,982,875,405,378,753,703,679,504 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 779,676,982,875,405,378,753,703,679,504 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 779,676,982,875,405,378,753,703,679,504 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 779,676,982,875,405,378,753,703,679,504 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 779,676,982,875,405,378,753,703,679,504 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 779,676,982,875,405,378,753,703,679,504 multiplied by 31/37 is 653,242,877,544,258,560,577,427,407,152, so we replace 779,676,982,875,405,378,753,703,679,504 with 653,242,877,544,258,560,577,427,407,152 and begin again.
  • The first fraction in the program is 17/65. 653,242,877,544,258,560,577,427,407,152 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 653,242,877,544,258,560,577,427,407,152 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 653,242,877,544,258,560,577,427,407,152 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 653,242,877,544,258,560,577,427,407,152 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 653,242,877,544,258,560,577,427,407,152 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 653,242,877,544,258,560,577,427,407,152 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 653,242,877,544,258,560,577,427,407,152 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 653,242,877,544,258,560,577,427,407,152 multiplied by 74/341 is 141,759,451,431,891,887,046,127,941,728, so we replace 653,242,877,544,258,560,577,427,407,152 with 141,759,451,431,891,887,046,127,941,728 and begin again.
  • The first fraction in the program is 17/65. 141,759,451,431,891,887,046,127,941,728 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 141,759,451,431,891,887,046,127,941,728 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 141,759,451,431,891,887,046,127,941,728 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 141,759,451,431,891,887,046,127,941,728 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 141,759,451,431,891,887,046,127,941,728 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 141,759,451,431,891,887,046,127,941,728 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 141,759,451,431,891,887,046,127,941,728 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 141,759,451,431,891,887,046,127,941,728 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 141,759,451,431,891,887,046,127,941,728 multiplied by 31/37 is 118,771,432,280,774,283,741,350,437,664, so we replace 141,759,451,431,891,887,046,127,941,728 with 118,771,432,280,774,283,741,350,437,664 and begin again.
  • The first fraction in the program is 17/65. 118,771,432,280,774,283,741,350,437,664 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 118,771,432,280,774,283,741,350,437,664 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 118,771,432,280,774,283,741,350,437,664 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 118,771,432,280,774,283,741,350,437,664 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 118,771,432,280,774,283,741,350,437,664 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 118,771,432,280,774,283,741,350,437,664 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 118,771,432,280,774,283,741,350,437,664 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 118,771,432,280,774,283,741,350,437,664 multiplied by 74/341 is 25,774,445,714,889,434,008,386,898,496, so we replace 118,771,432,280,774,283,741,350,437,664 with 25,774,445,714,889,434,008,386,898,496 and begin again.
  • The first fraction in the program is 17/65. 25,774,445,714,889,434,008,386,898,496 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 25,774,445,714,889,434,008,386,898,496 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 25,774,445,714,889,434,008,386,898,496 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 25,774,445,714,889,434,008,386,898,496 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 25,774,445,714,889,434,008,386,898,496 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 25,774,445,714,889,434,008,386,898,496 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 25,774,445,714,889,434,008,386,898,496 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 25,774,445,714,889,434,008,386,898,496 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 25,774,445,714,889,434,008,386,898,496 multiplied by 31/37 is 21,594,805,869,231,687,952,972,806,848, so we replace 25,774,445,714,889,434,008,386,898,496 with 21,594,805,869,231,687,952,972,806,848 and begin again.
  • The first fraction in the program is 17/65. 21,594,805,869,231,687,952,972,806,848 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 21,594,805,869,231,687,952,972,806,848 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 21,594,805,869,231,687,952,972,806,848 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 21,594,805,869,231,687,952,972,806,848 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 21,594,805,869,231,687,952,972,806,848 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 21,594,805,869,231,687,952,972,806,848 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 21,594,805,869,231,687,952,972,806,848 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 21,594,805,869,231,687,952,972,806,848 multiplied by 74/341 is 4,686,262,857,252,624,365,161,254,272, so we replace 21,594,805,869,231,687,952,972,806,848 with 4,686,262,857,252,624,365,161,254,272 and begin again.
  • The first fraction in the program is 17/65. 4,686,262,857,252,624,365,161,254,272 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 4,686,262,857,252,624,365,161,254,272 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 4,686,262,857,252,624,365,161,254,272 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 4,686,262,857,252,624,365,161,254,272 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 4,686,262,857,252,624,365,161,254,272 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 4,686,262,857,252,624,365,161,254,272 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 4,686,262,857,252,624,365,161,254,272 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 4,686,262,857,252,624,365,161,254,272 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 4,686,262,857,252,624,365,161,254,272 multiplied by 31/37 is 3,926,328,339,860,306,900,540,510,336, so we replace 4,686,262,857,252,624,365,161,254,272 with 3,926,328,339,860,306,900,540,510,336 and begin again.
  • The first fraction in the program is 17/65. 3,926,328,339,860,306,900,540,510,336 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 3,926,328,339,860,306,900,540,510,336 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 3,926,328,339,860,306,900,540,510,336 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 3,926,328,339,860,306,900,540,510,336 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 3,926,328,339,860,306,900,540,510,336 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 3,926,328,339,860,306,900,540,510,336 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 3,926,328,339,860,306,900,540,510,336 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 3,926,328,339,860,306,900,540,510,336 multiplied by 74/341 is 852,047,792,227,749,884,574,773,504, so we replace 3,926,328,339,860,306,900,540,510,336 with 852,047,792,227,749,884,574,773,504 and begin again.
  • The first fraction in the program is 17/65. 852,047,792,227,749,884,574,773,504 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 852,047,792,227,749,884,574,773,504 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 852,047,792,227,749,884,574,773,504 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 852,047,792,227,749,884,574,773,504 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 852,047,792,227,749,884,574,773,504 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 852,047,792,227,749,884,574,773,504 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 852,047,792,227,749,884,574,773,504 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 852,047,792,227,749,884,574,773,504 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 852,047,792,227,749,884,574,773,504 multiplied by 31/37 is 713,877,879,974,601,254,643,729,152, so we replace 852,047,792,227,749,884,574,773,504 with 713,877,879,974,601,254,643,729,152 and begin again.
  • The first fraction in the program is 17/65. 713,877,879,974,601,254,643,729,152 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 713,877,879,974,601,254,643,729,152 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 713,877,879,974,601,254,643,729,152 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 713,877,879,974,601,254,643,729,152 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 713,877,879,974,601,254,643,729,152 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 713,877,879,974,601,254,643,729,152 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 713,877,879,974,601,254,643,729,152 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 713,877,879,974,601,254,643,729,152 multiplied by 74/341 is 154,917,780,405,045,433,559,049,728, so we replace 713,877,879,974,601,254,643,729,152 with 154,917,780,405,045,433,559,049,728 and begin again.
  • The first fraction in the program is 17/65. 154,917,780,405,045,433,559,049,728 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 154,917,780,405,045,433,559,049,728 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 154,917,780,405,045,433,559,049,728 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 154,917,780,405,045,433,559,049,728 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 154,917,780,405,045,433,559,049,728 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 154,917,780,405,045,433,559,049,728 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 154,917,780,405,045,433,559,049,728 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 154,917,780,405,045,433,559,049,728 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 154,917,780,405,045,433,559,049,728 multiplied by 31/37 is 129,795,978,177,200,228,117,041,664, so we replace 154,917,780,405,045,433,559,049,728 with 129,795,978,177,200,228,117,041,664 and begin again.
  • The first fraction in the program is 17/65. 129,795,978,177,200,228,117,041,664 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 129,795,978,177,200,228,117,041,664 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 129,795,978,177,200,228,117,041,664 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 129,795,978,177,200,228,117,041,664 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 129,795,978,177,200,228,117,041,664 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 129,795,978,177,200,228,117,041,664 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 129,795,978,177,200,228,117,041,664 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 129,795,978,177,200,228,117,041,664 multiplied by 74/341 is 28,166,869,164,553,715,192,554,496, so we replace 129,795,978,177,200,228,117,041,664 with 28,166,869,164,553,715,192,554,496 and begin again.
  • The first fraction in the program is 17/65. 28,166,869,164,553,715,192,554,496 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 28,166,869,164,553,715,192,554,496 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 28,166,869,164,553,715,192,554,496 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 28,166,869,164,553,715,192,554,496 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 28,166,869,164,553,715,192,554,496 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 28,166,869,164,553,715,192,554,496 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 28,166,869,164,553,715,192,554,496 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 28,166,869,164,553,715,192,554,496 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 28,166,869,164,553,715,192,554,496 multiplied by 31/37 is 23,599,268,759,490,950,566,734,848, so we replace 28,166,869,164,553,715,192,554,496 with 23,599,268,759,490,950,566,734,848 and begin again.
  • The first fraction in the program is 17/65. 23,599,268,759,490,950,566,734,848 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 23,599,268,759,490,950,566,734,848 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 23,599,268,759,490,950,566,734,848 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 23,599,268,759,490,950,566,734,848 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 23,599,268,759,490,950,566,734,848 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 23,599,268,759,490,950,566,734,848 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 23,599,268,759,490,950,566,734,848 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 23,599,268,759,490,950,566,734,848 multiplied by 74/341 is 5,121,248,939,009,766,398,646,272, so we replace 23,599,268,759,490,950,566,734,848 with 5,121,248,939,009,766,398,646,272 and begin again.
  • The first fraction in the program is 17/65. 5,121,248,939,009,766,398,646,272 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 5,121,248,939,009,766,398,646,272 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 5,121,248,939,009,766,398,646,272 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 5,121,248,939,009,766,398,646,272 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 5,121,248,939,009,766,398,646,272 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 5,121,248,939,009,766,398,646,272 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 5,121,248,939,009,766,398,646,272 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 5,121,248,939,009,766,398,646,272 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 5,121,248,939,009,766,398,646,272 multiplied by 31/37 is 4,290,776,138,089,263,739,406,336, so we replace 5,121,248,939,009,766,398,646,272 with 4,290,776,138,089,263,739,406,336 and begin again.
  • The first fraction in the program is 17/65. 4,290,776,138,089,263,739,406,336 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 4,290,776,138,089,263,739,406,336 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 4,290,776,138,089,263,739,406,336 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 4,290,776,138,089,263,739,406,336 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 4,290,776,138,089,263,739,406,336 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 4,290,776,138,089,263,739,406,336 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 4,290,776,138,089,263,739,406,336 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 4,290,776,138,089,263,739,406,336 multiplied by 74/341 is 931,136,170,729,048,436,117,504, so we replace 4,290,776,138,089,263,739,406,336 with 931,136,170,729,048,436,117,504 and begin again.
  • The first fraction in the program is 17/65. 931,136,170,729,048,436,117,504 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 931,136,170,729,048,436,117,504 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 931,136,170,729,048,436,117,504 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 931,136,170,729,048,436,117,504 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 931,136,170,729,048,436,117,504 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 931,136,170,729,048,436,117,504 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 931,136,170,729,048,436,117,504 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 931,136,170,729,048,436,117,504 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 931,136,170,729,048,436,117,504 multiplied by 31/37 is 780,141,116,016,229,770,801,152, so we replace 931,136,170,729,048,436,117,504 with 780,141,116,016,229,770,801,152 and begin again.
  • The first fraction in the program is 17/65. 780,141,116,016,229,770,801,152 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 780,141,116,016,229,770,801,152 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 780,141,116,016,229,770,801,152 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 780,141,116,016,229,770,801,152 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 780,141,116,016,229,770,801,152 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 780,141,116,016,229,770,801,152 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 780,141,116,016,229,770,801,152 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 780,141,116,016,229,770,801,152 multiplied by 74/341 is 169,297,485,587,099,715,657,728, so we replace 780,141,116,016,229,770,801,152 with 169,297,485,587,099,715,657,728 and begin again.
  • The first fraction in the program is 17/65. 169,297,485,587,099,715,657,728 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 169,297,485,587,099,715,657,728 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 169,297,485,587,099,715,657,728 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 169,297,485,587,099,715,657,728 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 169,297,485,587,099,715,657,728 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 169,297,485,587,099,715,657,728 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 169,297,485,587,099,715,657,728 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 169,297,485,587,099,715,657,728 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 169,297,485,587,099,715,657,728 multiplied by 31/37 is 141,843,839,275,678,140,145,664, so we replace 169,297,485,587,099,715,657,728 with 141,843,839,275,678,140,145,664 and begin again.
  • The first fraction in the program is 17/65. 141,843,839,275,678,140,145,664 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 141,843,839,275,678,140,145,664 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 141,843,839,275,678,140,145,664 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 141,843,839,275,678,140,145,664 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 141,843,839,275,678,140,145,664 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 141,843,839,275,678,140,145,664 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 141,843,839,275,678,140,145,664 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 141,843,839,275,678,140,145,664 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 141,843,839,275,678,140,145,664 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 141,843,839,275,678,140,145,664 multiplied by 41/31 is 187,599,916,461,380,765,999,104, so we replace 141,843,839,275,678,140,145,664 with 187,599,916,461,380,765,999,104 and begin again.
  • The first fraction in the program is 17/65. 187,599,916,461,380,765,999,104 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 187,599,916,461,380,765,999,104 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 187,599,916,461,380,765,999,104 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 187,599,916,461,380,765,999,104 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 187,599,916,461,380,765,999,104 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 187,599,916,461,380,765,999,104 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 187,599,916,461,380,765,999,104 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 187,599,916,461,380,765,999,104 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 187,599,916,461,380,765,999,104 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 187,599,916,461,380,765,999,104 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 187,599,916,461,380,765,999,104 multiplied by 129/287 is 84,321,913,670,794,839,072,768, so we replace 187,599,916,461,380,765,999,104 with 84,321,913,670,794,839,072,768 and begin again.
  • The first fraction in the program is 17/65. 84,321,913,670,794,839,072,768 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 84,321,913,670,794,839,072,768 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 84,321,913,670,794,839,072,768 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 84,321,913,670,794,839,072,768 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 84,321,913,670,794,839,072,768 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 84,321,913,670,794,839,072,768 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 84,321,913,670,794,839,072,768 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 84,321,913,670,794,839,072,768 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 84,321,913,670,794,839,072,768 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 84,321,913,670,794,839,072,768 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 84,321,913,670,794,839,072,768 leaves a remainder when divided by 287, so we move on.
  • The next fraction in the program is 41/43. 84,321,913,670,794,839,072,768 multiplied by 41/43 is 80,399,964,197,734,613,999,616, so we replace 84,321,913,670,794,839,072,768 with 80,399,964,197,734,613,999,616 and begin again.
  • The first fraction in the program is 17/65. 80,399,964,197,734,613,999,616 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 80,399,964,197,734,613,999,616 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 80,399,964,197,734,613,999,616 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 80,399,964,197,734,613,999,616 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 80,399,964,197,734,613,999,616 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 80,399,964,197,734,613,999,616 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 80,399,964,197,734,613,999,616 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 80,399,964,197,734,613,999,616 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 80,399,964,197,734,613,999,616 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 80,399,964,197,734,613,999,616 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 80,399,964,197,734,613,999,616 multiplied by 129/287 is 36,137,963,001,769,216,745,472, so we replace 80,399,964,197,734,613,999,616 with 36,137,963,001,769,216,745,472 and begin again.
  • The first fraction in the program is 17/65. 36,137,963,001,769,216,745,472 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 36,137,963,001,769,216,745,472 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 36,137,963,001,769,216,745,472 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 36,137,963,001,769,216,745,472 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 36,137,963,001,769,216,745,472 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 36,137,963,001,769,216,745,472 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 36,137,963,001,769,216,745,472 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 36,137,963,001,769,216,745,472 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 36,137,963,001,769,216,745,472 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 36,137,963,001,769,216,745,472 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 36,137,963,001,769,216,745,472 leaves a remainder when divided by 287, so we move on.
  • The next fraction in the program is 41/43. 36,137,963,001,769,216,745,472 multiplied by 41/43 is 34,457,127,513,314,834,571,264, so we replace 36,137,963,001,769,216,745,472 with 34,457,127,513,314,834,571,264 and begin again.
  • The first fraction in the program is 17/65. 34,457,127,513,314,834,571,264 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 34,457,127,513,314,834,571,264 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 34,457,127,513,314,834,571,264 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 34,457,127,513,314,834,571,264 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 34,457,127,513,314,834,571,264 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 34,457,127,513,314,834,571,264 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 34,457,127,513,314,834,571,264 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 34,457,127,513,314,834,571,264 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 34,457,127,513,314,834,571,264 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 34,457,127,513,314,834,571,264 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 34,457,127,513,314,834,571,264 multiplied by 129/287 is 15,487,698,429,329,664,319,488, so we replace 34,457,127,513,314,834,571,264 with 15,487,698,429,329,664,319,488 and begin again.
  • The first fraction in the program is 17/65. 15,487,698,429,329,664,319,488 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 15,487,698,429,329,664,319,488 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 15,487,698,429,329,664,319,488 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 15,487,698,429,329,664,319,488 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 15,487,698,429,329,664,319,488 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 15,487,698,429,329,664,319,488 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 15,487,698,429,329,664,319,488 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 15,487,698,429,329,664,319,488 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 15,487,698,429,329,664,319,488 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 15,487,698,429,329,664,319,488 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 15,487,698,429,329,664,319,488 leaves a remainder when divided by 287, so we move on.
  • The next fraction in the program is 41/43. 15,487,698,429,329,664,319,488 multiplied by 41/43 is 14,767,340,362,849,214,816,256, so we replace 15,487,698,429,329,664,319,488 with 14,767,340,362,849,214,816,256 and begin again.
  • The first fraction in the program is 17/65. 14,767,340,362,849,214,816,256 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 14,767,340,362,849,214,816,256 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 14,767,340,362,849,214,816,256 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 14,767,340,362,849,214,816,256 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 14,767,340,362,849,214,816,256 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 14,767,340,362,849,214,816,256 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 14,767,340,362,849,214,816,256 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 14,767,340,362,849,214,816,256 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 14,767,340,362,849,214,816,256 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 14,767,340,362,849,214,816,256 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 14,767,340,362,849,214,816,256 multiplied by 129/287 is 6,637,585,041,141,284,708,352, so we replace 14,767,340,362,849,214,816,256 with 6,637,585,041,141,284,708,352 and begin again.
  • The first fraction in the program is 17/65. 6,637,585,041,141,284,708,352 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 6,637,585,041,141,284,708,352 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 6,637,585,041,141,284,708,352 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 6,637,585,041,141,284,708,352 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 6,637,585,041,141,284,708,352 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 6,637,585,041,141,284,708,352 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 6,637,585,041,141,284,708,352 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 6,637,585,041,141,284,708,352 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 6,637,585,041,141,284,708,352 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 6,637,585,041,141,284,708,352 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 6,637,585,041,141,284,708,352 leaves a remainder when divided by 287, so we move on.
  • The next fraction in the program is 41/43. 6,637,585,041,141,284,708,352 multiplied by 41/43 is 6,328,860,155,506,806,349,824, so we replace 6,637,585,041,141,284,708,352 with 6,328,860,155,506,806,349,824 and begin again.
  • The first fraction in the program is 17/65. 6,328,860,155,506,806,349,824 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 6,328,860,155,506,806,349,824 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 6,328,860,155,506,806,349,824 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 6,328,860,155,506,806,349,824 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 6,328,860,155,506,806,349,824 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 6,328,860,155,506,806,349,824 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 6,328,860,155,506,806,349,824 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 6,328,860,155,506,806,349,824 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 6,328,860,155,506,806,349,824 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 6,328,860,155,506,806,349,824 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 6,328,860,155,506,806,349,824 multiplied by 129/287 is 2,844,679,303,346,264,875,008, so we replace 6,328,860,155,506,806,349,824 with 2,844,679,303,346,264,875,008 and begin again.
  • The first fraction in the program is 17/65. 2,844,679,303,346,264,875,008 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 2,844,679,303,346,264,875,008 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 2,844,679,303,346,264,875,008 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 2,844,679,303,346,264,875,008 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 2,844,679,303,346,264,875,008 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 2,844,679,303,346,264,875,008 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 2,844,679,303,346,264,875,008 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 2,844,679,303,346,264,875,008 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 2,844,679,303,346,264,875,008 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 2,844,679,303,346,264,875,008 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 2,844,679,303,346,264,875,008 leaves a remainder when divided by 287, so we move on.
  • The next fraction in the program is 41/43. 2,844,679,303,346,264,875,008 multiplied by 41/43 is 2,712,368,638,074,345,578,496, so we replace 2,844,679,303,346,264,875,008 with 2,712,368,638,074,345,578,496 and begin again.
  • The first fraction in the program is 17/65. 2,712,368,638,074,345,578,496 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 2,712,368,638,074,345,578,496 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 2,712,368,638,074,345,578,496 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 2,712,368,638,074,345,578,496 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 2,712,368,638,074,345,578,496 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 2,712,368,638,074,345,578,496 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 2,712,368,638,074,345,578,496 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 2,712,368,638,074,345,578,496 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 2,712,368,638,074,345,578,496 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 2,712,368,638,074,345,578,496 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 2,712,368,638,074,345,578,496 multiplied by 129/287 is 1,219,148,272,862,684,946,432, so we replace 2,712,368,638,074,345,578,496 with 1,219,148,272,862,684,946,432 and begin again.
  • The first fraction in the program is 17/65. 1,219,148,272,862,684,946,432 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 1,219,148,272,862,684,946,432 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 1,219,148,272,862,684,946,432 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 1,219,148,272,862,684,946,432 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 1,219,148,272,862,684,946,432 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 1,219,148,272,862,684,946,432 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 1,219,148,272,862,684,946,432 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 1,219,148,272,862,684,946,432 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 1,219,148,272,862,684,946,432 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 1,219,148,272,862,684,946,432 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 1,219,148,272,862,684,946,432 leaves a remainder when divided by 287, so we move on.
  • The next fraction in the program is 41/43. 1,219,148,272,862,684,946,432 multiplied by 41/43 is 1,162,443,702,031,862,390,784, so we replace 1,219,148,272,862,684,946,432 with 1,162,443,702,031,862,390,784 and begin again.
  • The first fraction in the program is 17/65. 1,162,443,702,031,862,390,784 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 1,162,443,702,031,862,390,784 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 1,162,443,702,031,862,390,784 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 1,162,443,702,031,862,390,784 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 1,162,443,702,031,862,390,784 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 1,162,443,702,031,862,390,784 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 1,162,443,702,031,862,390,784 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 1,162,443,702,031,862,390,784 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 1,162,443,702,031,862,390,784 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 1,162,443,702,031,862,390,784 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 1,162,443,702,031,862,390,784 multiplied by 129/287 is 522,492,116,941,150,691,328, so we replace 1,162,443,702,031,862,390,784 with 522,492,116,941,150,691,328 and begin again.
  • The first fraction in the program is 17/65. 522,492,116,941,150,691,328 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 522,492,116,941,150,691,328 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 522,492,116,941,150,691,328 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 522,492,116,941,150,691,328 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 522,492,116,941,150,691,328 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 522,492,116,941,150,691,328 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 522,492,116,941,150,691,328 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 522,492,116,941,150,691,328 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 522,492,116,941,150,691,328 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 522,492,116,941,150,691,328 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 522,492,116,941,150,691,328 leaves a remainder when divided by 287, so we move on.
  • The next fraction in the program is 41/43. 522,492,116,941,150,691,328 multiplied by 41/43 is 498,190,158,013,655,310,336, so we replace 522,492,116,941,150,691,328 with 498,190,158,013,655,310,336 and begin again.
  • The first fraction in the program is 17/65. 498,190,158,013,655,310,336 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 498,190,158,013,655,310,336 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 498,190,158,013,655,310,336 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 498,190,158,013,655,310,336 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 498,190,158,013,655,310,336 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 498,190,158,013,655,310,336 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 498,190,158,013,655,310,336 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 498,190,158,013,655,310,336 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 498,190,158,013,655,310,336 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 498,190,158,013,655,310,336 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 498,190,158,013,655,310,336 multiplied by 129/287 is 223,925,192,974,778,867,712, so we replace 498,190,158,013,655,310,336 with 223,925,192,974,778,867,712 and begin again.
  • The first fraction in the program is 17/65. 223,925,192,974,778,867,712 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 223,925,192,974,778,867,712 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 223,925,192,974,778,867,712 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 223,925,192,974,778,867,712 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 223,925,192,974,778,867,712 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 223,925,192,974,778,867,712 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 223,925,192,974,778,867,712 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 223,925,192,974,778,867,712 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 223,925,192,974,778,867,712 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 223,925,192,974,778,867,712 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 223,925,192,974,778,867,712 leaves a remainder when divided by 287, so we move on.
  • The next fraction in the program is 41/43. 223,925,192,974,778,867,712 multiplied by 41/43 is 213,510,067,720,137,990,144, so we replace 223,925,192,974,778,867,712 with 213,510,067,720,137,990,144 and begin again.
  • The first fraction in the program is 17/65. 213,510,067,720,137,990,144 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 213,510,067,720,137,990,144 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 213,510,067,720,137,990,144 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 213,510,067,720,137,990,144 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 213,510,067,720,137,990,144 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 213,510,067,720,137,990,144 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 213,510,067,720,137,990,144 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 213,510,067,720,137,990,144 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 213,510,067,720,137,990,144 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 213,510,067,720,137,990,144 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 213,510,067,720,137,990,144 multiplied by 129/287 is 95,967,939,846,333,800,448, so we replace 213,510,067,720,137,990,144 with 95,967,939,846,333,800,448 and begin again.
  • The first fraction in the program is 17/65. 95,967,939,846,333,800,448 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 95,967,939,846,333,800,448 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 95,967,939,846,333,800,448 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 95,967,939,846,333,800,448 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 95,967,939,846,333,800,448 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 95,967,939,846,333,800,448 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 95,967,939,846,333,800,448 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 95,967,939,846,333,800,448 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 95,967,939,846,333,800,448 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 95,967,939,846,333,800,448 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 95,967,939,846,333,800,448 leaves a remainder when divided by 287, so we move on.
  • The next fraction in the program is 41/43. 95,967,939,846,333,800,448 multiplied by 41/43 is 91,504,314,737,201,995,776, so we replace 95,967,939,846,333,800,448 with 91,504,314,737,201,995,776 and begin again.
  • The first fraction in the program is 17/65. 91,504,314,737,201,995,776 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 91,504,314,737,201,995,776 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 91,504,314,737,201,995,776 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 91,504,314,737,201,995,776 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 91,504,314,737,201,995,776 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 91,504,314,737,201,995,776 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 91,504,314,737,201,995,776 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 91,504,314,737,201,995,776 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 91,504,314,737,201,995,776 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 91,504,314,737,201,995,776 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 91,504,314,737,201,995,776 multiplied by 129/287 is 41,129,117,077,000,200,192, so we replace 91,504,314,737,201,995,776 with 41,129,117,077,000,200,192 and begin again.
  • The first fraction in the program is 17/65. 41,129,117,077,000,200,192 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 41,129,117,077,000,200,192 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 41,129,117,077,000,200,192 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 41,129,117,077,000,200,192 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 41,129,117,077,000,200,192 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 41,129,117,077,000,200,192 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 41,129,117,077,000,200,192 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 41,129,117,077,000,200,192 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 41,129,117,077,000,200,192 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 41,129,117,077,000,200,192 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 41,129,117,077,000,200,192 leaves a remainder when divided by 287, so we move on.
  • The next fraction in the program is 41/43. 41,129,117,077,000,200,192 multiplied by 41/43 is 39,216,134,887,372,283,904, so we replace 41,129,117,077,000,200,192 with 39,216,134,887,372,283,904 and begin again.
  • The first fraction in the program is 17/65. 39,216,134,887,372,283,904 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 39,216,134,887,372,283,904 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 39,216,134,887,372,283,904 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 39,216,134,887,372,283,904 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 39,216,134,887,372,283,904 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 39,216,134,887,372,283,904 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 39,216,134,887,372,283,904 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 39,216,134,887,372,283,904 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 39,216,134,887,372,283,904 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 39,216,134,887,372,283,904 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 39,216,134,887,372,283,904 multiplied by 129/287 is 17,626,764,461,571,514,368, so we replace 39,216,134,887,372,283,904 with 17,626,764,461,571,514,368 and begin again.
  • The first fraction in the program is 17/65. 17,626,764,461,571,514,368 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 17,626,764,461,571,514,368 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 17,626,764,461,571,514,368 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 17,626,764,461,571,514,368 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 17,626,764,461,571,514,368 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 17,626,764,461,571,514,368 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 17,626,764,461,571,514,368 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 17,626,764,461,571,514,368 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 17,626,764,461,571,514,368 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 17,626,764,461,571,514,368 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 17,626,764,461,571,514,368 leaves a remainder when divided by 287, so we move on.
  • The next fraction in the program is 41/43. 17,626,764,461,571,514,368 multiplied by 41/43 is 16,806,914,951,730,978,816, so we replace 17,626,764,461,571,514,368 with 16,806,914,951,730,978,816 and begin again.
  • The first fraction in the program is 17/65. 16,806,914,951,730,978,816 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 16,806,914,951,730,978,816 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 16,806,914,951,730,978,816 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 16,806,914,951,730,978,816 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 16,806,914,951,730,978,816 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 16,806,914,951,730,978,816 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 16,806,914,951,730,978,816 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 16,806,914,951,730,978,816 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 16,806,914,951,730,978,816 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 16,806,914,951,730,978,816 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 16,806,914,951,730,978,816 multiplied by 129/287 is 7,554,327,626,387,791,872, so we replace 16,806,914,951,730,978,816 with 7,554,327,626,387,791,872 and begin again.
  • The first fraction in the program is 17/65. 7,554,327,626,387,791,872 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 7,554,327,626,387,791,872 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 7,554,327,626,387,791,872 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 7,554,327,626,387,791,872 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 7,554,327,626,387,791,872 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 7,554,327,626,387,791,872 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 7,554,327,626,387,791,872 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 7,554,327,626,387,791,872 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 7,554,327,626,387,791,872 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 7,554,327,626,387,791,872 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 7,554,327,626,387,791,872 leaves a remainder when divided by 287, so we move on.
  • The next fraction in the program is 41/43. 7,554,327,626,387,791,872 multiplied by 41/43 is 7,202,963,550,741,848,064, so we replace 7,554,327,626,387,791,872 with 7,202,963,550,741,848,064 and begin again.
  • The first fraction in the program is 17/65. 7,202,963,550,741,848,064 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 7,202,963,550,741,848,064 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 7,202,963,550,741,848,064 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 7,202,963,550,741,848,064 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 7,202,963,550,741,848,064 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 7,202,963,550,741,848,064 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 7,202,963,550,741,848,064 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 7,202,963,550,741,848,064 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 7,202,963,550,741,848,064 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 7,202,963,550,741,848,064 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 7,202,963,550,741,848,064 multiplied by 129/287 is 3,237,568,982,737,625,088, so we replace 7,202,963,550,741,848,064 with 3,237,568,982,737,625,088 and begin again.
  • The first fraction in the program is 17/65. 3,237,568,982,737,625,088 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 3,237,568,982,737,625,088 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 3,237,568,982,737,625,088 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 3,237,568,982,737,625,088 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 3,237,568,982,737,625,088 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 3,237,568,982,737,625,088 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 3,237,568,982,737,625,088 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 3,237,568,982,737,625,088 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 3,237,568,982,737,625,088 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 3,237,568,982,737,625,088 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 3,237,568,982,737,625,088 leaves a remainder when divided by 287, so we move on.
  • The next fraction in the program is 41/43. 3,237,568,982,737,625,088 multiplied by 41/43 is 3,086,984,378,889,363,456, so we replace 3,237,568,982,737,625,088 with 3,086,984,378,889,363,456 and begin again.
  • The first fraction in the program is 17/65. 3,086,984,378,889,363,456 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 3,086,984,378,889,363,456 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 3,086,984,378,889,363,456 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 3,086,984,378,889,363,456 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 3,086,984,378,889,363,456 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 3,086,984,378,889,363,456 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 3,086,984,378,889,363,456 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 3,086,984,378,889,363,456 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 3,086,984,378,889,363,456 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 3,086,984,378,889,363,456 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 3,086,984,378,889,363,456 multiplied by 129/287 is 1,387,529,564,030,410,752, so we replace 3,086,984,378,889,363,456 with 1,387,529,564,030,410,752 and begin again.
  • The first fraction in the program is 17/65. 1,387,529,564,030,410,752 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 1,387,529,564,030,410,752 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 1,387,529,564,030,410,752 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 1,387,529,564,030,410,752 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 1,387,529,564,030,410,752 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 1,387,529,564,030,410,752 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 1,387,529,564,030,410,752 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 1,387,529,564,030,410,752 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 1,387,529,564,030,410,752 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 1,387,529,564,030,410,752 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 1,387,529,564,030,410,752 leaves a remainder when divided by 287, so we move on.
  • The next fraction in the program is 41/43. 1,387,529,564,030,410,752 multiplied by 41/43 is 1,322,993,305,238,298,624, so we replace 1,387,529,564,030,410,752 with 1,322,993,305,238,298,624 and begin again.
  • The first fraction in the program is 17/65. 1,322,993,305,238,298,624 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 1,322,993,305,238,298,624 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 1,322,993,305,238,298,624 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 1,322,993,305,238,298,624 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 1,322,993,305,238,298,624 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 1,322,993,305,238,298,624 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 1,322,993,305,238,298,624 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 1,322,993,305,238,298,624 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 1,322,993,305,238,298,624 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 1,322,993,305,238,298,624 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 1,322,993,305,238,298,624 multiplied by 129/287 is 594,655,527,441,604,608, so we replace 1,322,993,305,238,298,624 with 594,655,527,441,604,608 and begin again.
  • The first fraction in the program is 17/65. 594,655,527,441,604,608 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 594,655,527,441,604,608 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 594,655,527,441,604,608 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 594,655,527,441,604,608 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 594,655,527,441,604,608 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 594,655,527,441,604,608 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 594,655,527,441,604,608 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 594,655,527,441,604,608 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 594,655,527,441,604,608 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 594,655,527,441,604,608 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 594,655,527,441,604,608 leaves a remainder when divided by 287, so we move on.
  • The next fraction in the program is 41/43. 594,655,527,441,604,608 multiplied by 41/43 is 566,997,130,816,413,696, so we replace 594,655,527,441,604,608 with 566,997,130,816,413,696 and begin again.
  • The first fraction in the program is 17/65. 566,997,130,816,413,696 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 566,997,130,816,413,696 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 566,997,130,816,413,696 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 566,997,130,816,413,696 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 566,997,130,816,413,696 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 566,997,130,816,413,696 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 566,997,130,816,413,696 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 566,997,130,816,413,696 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 566,997,130,816,413,696 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 566,997,130,816,413,696 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 566,997,130,816,413,696 multiplied by 129/287 is 254,852,368,903,544,832, so we replace 566,997,130,816,413,696 with 254,852,368,903,544,832 and begin again.
  • The first fraction in the program is 17/65. 254,852,368,903,544,832 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 254,852,368,903,544,832 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 254,852,368,903,544,832 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 254,852,368,903,544,832 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 254,852,368,903,544,832 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 254,852,368,903,544,832 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 254,852,368,903,544,832 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 254,852,368,903,544,832 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 254,852,368,903,544,832 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 254,852,368,903,544,832 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 254,852,368,903,544,832 leaves a remainder when divided by 287, so we move on.
  • The next fraction in the program is 41/43. 254,852,368,903,544,832 multiplied by 41/43 is 242,998,770,349,891,584, so we replace 254,852,368,903,544,832 with 242,998,770,349,891,584 and begin again.
  • The first fraction in the program is 17/65. 242,998,770,349,891,584 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 242,998,770,349,891,584 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 242,998,770,349,891,584 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 242,998,770,349,891,584 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 242,998,770,349,891,584 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 242,998,770,349,891,584 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 242,998,770,349,891,584 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 242,998,770,349,891,584 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 242,998,770,349,891,584 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 242,998,770,349,891,584 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 242,998,770,349,891,584 multiplied by 129/287 is 109,222,443,815,804,928, so we replace 242,998,770,349,891,584 with 109,222,443,815,804,928 and begin again.
  • The first fraction in the program is 17/65. 109,222,443,815,804,928 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 109,222,443,815,804,928 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 109,222,443,815,804,928 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 109,222,443,815,804,928 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 109,222,443,815,804,928 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 109,222,443,815,804,928 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 109,222,443,815,804,928 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 109,222,443,815,804,928 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 109,222,443,815,804,928 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 109,222,443,815,804,928 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 109,222,443,815,804,928 leaves a remainder when divided by 287, so we move on.
  • The next fraction in the program is 41/43. 109,222,443,815,804,928 multiplied by 41/43 is 104,142,330,149,953,536, so we replace 109,222,443,815,804,928 with 104,142,330,149,953,536 and begin again.
  • The first fraction in the program is 17/65. 104,142,330,149,953,536 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 104,142,330,149,953,536 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 104,142,330,149,953,536 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 104,142,330,149,953,536 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 104,142,330,149,953,536 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 104,142,330,149,953,536 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 104,142,330,149,953,536 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 104,142,330,149,953,536 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 104,142,330,149,953,536 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 104,142,330,149,953,536 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 104,142,330,149,953,536 multiplied by 129/287 is 46,809,618,778,202,112, so we replace 104,142,330,149,953,536 with 46,809,618,778,202,112 and begin again.
  • The first fraction in the program is 17/65. 46,809,618,778,202,112 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 46,809,618,778,202,112 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 46,809,618,778,202,112 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 46,809,618,778,202,112 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 46,809,618,778,202,112 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 46,809,618,778,202,112 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 46,809,618,778,202,112 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 46,809,618,778,202,112 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 46,809,618,778,202,112 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 46,809,618,778,202,112 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 46,809,618,778,202,112 leaves a remainder when divided by 287, so we move on.
  • The next fraction in the program is 41/43. 46,809,618,778,202,112 multiplied by 41/43 is 44,632,427,207,122,944, so we replace 46,809,618,778,202,112 with 44,632,427,207,122,944 and begin again.
  • The first fraction in the program is 17/65. 44,632,427,207,122,944 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 44,632,427,207,122,944 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 44,632,427,207,122,944 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 44,632,427,207,122,944 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 44,632,427,207,122,944 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 44,632,427,207,122,944 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 44,632,427,207,122,944 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 44,632,427,207,122,944 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 44,632,427,207,122,944 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 44,632,427,207,122,944 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 44,632,427,207,122,944 multiplied by 129/287 is 20,061,265,190,658,048, so we replace 44,632,427,207,122,944 with 20,061,265,190,658,048 and begin again.
  • The first fraction in the program is 17/65. 20,061,265,190,658,048 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 20,061,265,190,658,048 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 20,061,265,190,658,048 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 20,061,265,190,658,048 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 20,061,265,190,658,048 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 20,061,265,190,658,048 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 20,061,265,190,658,048 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 20,061,265,190,658,048 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 20,061,265,190,658,048 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 20,061,265,190,658,048 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 20,061,265,190,658,048 leaves a remainder when divided by 287, so we move on.
  • The next fraction in the program is 41/43. 20,061,265,190,658,048 multiplied by 41/43 is 19,128,183,088,766,976, so we replace 20,061,265,190,658,048 with 19,128,183,088,766,976 and begin again.
  • The first fraction in the program is 17/65. 19,128,183,088,766,976 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 19,128,183,088,766,976 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 19,128,183,088,766,976 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 19,128,183,088,766,976 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 19,128,183,088,766,976 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 19,128,183,088,766,976 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 19,128,183,088,766,976 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 19,128,183,088,766,976 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 19,128,183,088,766,976 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 19,128,183,088,766,976 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 19,128,183,088,766,976 multiplied by 129/287 is 8,597,685,081,710,592, so we replace 19,128,183,088,766,976 with 8,597,685,081,710,592 and begin again.
  • The first fraction in the program is 17/65. 8,597,685,081,710,592 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 8,597,685,081,710,592 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 8,597,685,081,710,592 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 8,597,685,081,710,592 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 8,597,685,081,710,592 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 8,597,685,081,710,592 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 8,597,685,081,710,592 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 8,597,685,081,710,592 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 8,597,685,081,710,592 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 8,597,685,081,710,592 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 8,597,685,081,710,592 leaves a remainder when divided by 287, so we move on.
  • The next fraction in the program is 41/43. 8,597,685,081,710,592 multiplied by 41/43 is 8,197,792,752,328,704, so we replace 8,597,685,081,710,592 with 8,197,792,752,328,704 and begin again.
  • The first fraction in the program is 17/65. 8,197,792,752,328,704 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 8,197,792,752,328,704 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 8,197,792,752,328,704 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 8,197,792,752,328,704 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 8,197,792,752,328,704 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 8,197,792,752,328,704 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 8,197,792,752,328,704 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 8,197,792,752,328,704 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 8,197,792,752,328,704 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 8,197,792,752,328,704 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 8,197,792,752,328,704 multiplied by 129/287 is 3,684,722,177,875,968, so we replace 8,197,792,752,328,704 with 3,684,722,177,875,968 and begin again.
  • The first fraction in the program is 17/65. 3,684,722,177,875,968 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 3,684,722,177,875,968 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 3,684,722,177,875,968 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 3,684,722,177,875,968 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 3,684,722,177,875,968 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 3,684,722,177,875,968 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 3,684,722,177,875,968 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 3,684,722,177,875,968 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 3,684,722,177,875,968 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 3,684,722,177,875,968 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 3,684,722,177,875,968 leaves a remainder when divided by 287, so we move on.
  • The next fraction in the program is 41/43. 3,684,722,177,875,968 multiplied by 41/43 is 3,513,339,750,998,016, so we replace 3,684,722,177,875,968 with 3,513,339,750,998,016 and begin again.
  • The first fraction in the program is 17/65. 3,513,339,750,998,016 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 3,513,339,750,998,016 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 3,513,339,750,998,016 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 3,513,339,750,998,016 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 3,513,339,750,998,016 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 3,513,339,750,998,016 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 3,513,339,750,998,016 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 3,513,339,750,998,016 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 3,513,339,750,998,016 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 3,513,339,750,998,016 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 3,513,339,750,998,016 leaves a remainder when divided by 287, so we move on.
  • The next fraction in the program is 41/43. 3,513,339,750,998,016 leaves a remainder when divided by 43, so we move on.
  • The next fraction in the program is 13/41. 3,513,339,750,998,016 multiplied by 13/41 is 1,113,985,774,706,688, so we replace 3,513,339,750,998,016 with 1,113,985,774,706,688 and begin again.
  • The first fraction in the program is 17/65. 1,113,985,774,706,688 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 1,113,985,774,706,688 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 1,113,985,774,706,688 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 1,113,985,774,706,688 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 1,113,985,774,706,688 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 1,113,985,774,706,688 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 1,113,985,774,706,688 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 1,113,985,774,706,688 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 1,113,985,774,706,688 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 1,113,985,774,706,688 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 1,113,985,774,706,688 leaves a remainder when divided by 287, so we move on.
  • The next fraction in the program is 41/43. 1,113,985,774,706,688 leaves a remainder when divided by 43, so we move on.
  • The next fraction in the program is 13/41. 1,113,985,774,706,688 leaves a remainder when divided by 41, so we move on.
  • The next fraction in the program is 1/13. 1,113,985,774,706,688 multiplied by 1/13 is 85,691,213,438,976, so we replace 1,113,985,774,706,688 with 85,691,213,438,976 and begin again.
  • The first fraction in the program is 17/65. 85,691,213,438,976 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 85,691,213,438,976 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 85,691,213,438,976 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 85,691,213,438,976 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 85,691,213,438,976 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 85,691,213,438,976 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 85,691,213,438,976 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 85,691,213,438,976 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 85,691,213,438,976 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 85,691,213,438,976 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 85,691,213,438,976 leaves a remainder when divided by 287, so we move on.
  • The next fraction in the program is 41/43. 85,691,213,438,976 leaves a remainder when divided by 43, so we move on.
  • The next fraction in the program is 13/41. 85,691,213,438,976 leaves a remainder when divided by 41, so we move on.
  • The next fraction in the program is 1/13. 85,691,213,438,976 leaves a remainder when divided by 13, so we move on.
  • The next fraction in the program is 1/3. 85,691,213,438,976 multiplied by 1/3 is 28,563,737,812,992, so we replace 85,691,213,438,976 with 28,563,737,812,992 and begin again.
  • The first fraction in the program is 17/65. 28,563,737,812,992 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 28,563,737,812,992 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 28,563,737,812,992 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 28,563,737,812,992 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 28,563,737,812,992 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 28,563,737,812,992 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 28,563,737,812,992 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 28,563,737,812,992 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 28,563,737,812,992 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 28,563,737,812,992 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 28,563,737,812,992 leaves a remainder when divided by 287, so we move on.
  • The next fraction in the program is 41/43. 28,563,737,812,992 leaves a remainder when divided by 43, so we move on.
  • The next fraction in the program is 13/41. 28,563,737,812,992 leaves a remainder when divided by 41, so we move on.
  • The next fraction in the program is 1/13. 28,563,737,812,992 leaves a remainder when divided by 13, so we move on.
  • The next fraction in the program is 1/3. 28,563,737,812,992 multiplied by 1/3 is 9,521,245,937,664, so we replace 28,563,737,812,992 with 9,521,245,937,664 and begin again.
  • The first fraction in the program is 17/65. 9,521,245,937,664 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 9,521,245,937,664 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 9,521,245,937,664 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 9,521,245,937,664 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 9,521,245,937,664 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 9,521,245,937,664 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 9,521,245,937,664 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 9,521,245,937,664 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 9,521,245,937,664 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 9,521,245,937,664 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 9,521,245,937,664 leaves a remainder when divided by 287, so we move on.
  • The next fraction in the program is 41/43. 9,521,245,937,664 leaves a remainder when divided by 43, so we move on.
  • The next fraction in the program is 13/41. 9,521,245,937,664 leaves a remainder when divided by 41, so we move on.
  • The next fraction in the program is 1/13. 9,521,245,937,664 leaves a remainder when divided by 13, so we move on.
  • The next fraction in the program is 1/3. 9,521,245,937,664 multiplied by 1/3 is 3,173,748,645,888, so we replace 9,521,245,937,664 with 3,173,748,645,888 and begin again.
  • The first fraction in the program is 17/65. 3,173,748,645,888 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 3,173,748,645,888 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 3,173,748,645,888 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 3,173,748,645,888 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 3,173,748,645,888 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 3,173,748,645,888 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 3,173,748,645,888 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 3,173,748,645,888 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 3,173,748,645,888 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 3,173,748,645,888 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 3,173,748,645,888 leaves a remainder when divided by 287, so we move on.
  • The next fraction in the program is 41/43. 3,173,748,645,888 leaves a remainder when divided by 43, so we move on.
  • The next fraction in the program is 13/41. 3,173,748,645,888 leaves a remainder when divided by 41, so we move on.
  • The next fraction in the program is 1/13. 3,173,748,645,888 leaves a remainder when divided by 13, so we move on.
  • The next fraction in the program is 1/3. 3,173,748,645,888 multiplied by 1/3 is 1,057,916,215,296, so we replace 3,173,748,645,888 with 1,057,916,215,296 and begin again.
  • The first fraction in the program is 17/65. 1,057,916,215,296 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 1,057,916,215,296 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 1,057,916,215,296 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 1,057,916,215,296 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 1,057,916,215,296 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 1,057,916,215,296 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 1,057,916,215,296 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 1,057,916,215,296 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 1,057,916,215,296 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 1,057,916,215,296 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 1,057,916,215,296 leaves a remainder when divided by 287, so we move on.
  • The next fraction in the program is 41/43. 1,057,916,215,296 leaves a remainder when divided by 43, so we move on.
  • The next fraction in the program is 13/41. 1,057,916,215,296 leaves a remainder when divided by 41, so we move on.
  • The next fraction in the program is 1/13. 1,057,916,215,296 leaves a remainder when divided by 13, so we move on.
  • The next fraction in the program is 1/3. 1,057,916,215,296 multiplied by 1/3 is 352,638,738,432, so we replace 1,057,916,215,296 with 352,638,738,432 and begin again.
  • The first fraction in the program is 17/65. 352,638,738,432 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 352,638,738,432 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 352,638,738,432 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 352,638,738,432 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 352,638,738,432 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 352,638,738,432 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 352,638,738,432 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 352,638,738,432 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 352,638,738,432 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 352,638,738,432 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 352,638,738,432 leaves a remainder when divided by 287, so we move on.
  • The next fraction in the program is 41/43. 352,638,738,432 leaves a remainder when divided by 43, so we move on.
  • The next fraction in the program is 13/41. 352,638,738,432 leaves a remainder when divided by 41, so we move on.
  • The next fraction in the program is 1/13. 352,638,738,432 leaves a remainder when divided by 13, so we move on.
  • The next fraction in the program is 1/3. 352,638,738,432 multiplied by 1/3 is 117,546,246,144, so we replace 352,638,738,432 with 117,546,246,144 and begin again.
  • The first fraction in the program is 17/65. 117,546,246,144 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 117,546,246,144 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 117,546,246,144 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 117,546,246,144 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 117,546,246,144 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 117,546,246,144 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 117,546,246,144 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 117,546,246,144 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 117,546,246,144 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 117,546,246,144 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 117,546,246,144 leaves a remainder when divided by 287, so we move on.
  • The next fraction in the program is 41/43. 117,546,246,144 leaves a remainder when divided by 43, so we move on.
  • The next fraction in the program is 13/41. 117,546,246,144 leaves a remainder when divided by 41, so we move on.
  • The next fraction in the program is 1/13. 117,546,246,144 leaves a remainder when divided by 13, so we move on.
  • The next fraction in the program is 1/3. 117,546,246,144 multiplied by 1/3 is 39,182,082,048, so we replace 117,546,246,144 with 39,182,082,048 and begin again.
  • The first fraction in the program is 17/65. 39,182,082,048 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 39,182,082,048 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 39,182,082,048 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 39,182,082,048 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 39,182,082,048 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 39,182,082,048 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 39,182,082,048 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 39,182,082,048 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 39,182,082,048 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 39,182,082,048 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 39,182,082,048 leaves a remainder when divided by 287, so we move on.
  • The next fraction in the program is 41/43. 39,182,082,048 leaves a remainder when divided by 43, so we move on.
  • The next fraction in the program is 13/41. 39,182,082,048 leaves a remainder when divided by 41, so we move on.
  • The next fraction in the program is 1/13. 39,182,082,048 leaves a remainder when divided by 13, so we move on.
  • The next fraction in the program is 1/3. 39,182,082,048 multiplied by 1/3 is 13,060,694,016, so we replace 39,182,082,048 with 13,060,694,016 and begin again.
  • The first fraction in the program is 17/65. 13,060,694,016 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 13,060,694,016 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 13,060,694,016 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 13,060,694,016 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 13,060,694,016 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 13,060,694,016 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 13,060,694,016 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 13,060,694,016 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 13,060,694,016 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 13,060,694,016 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 13,060,694,016 leaves a remainder when divided by 287, so we move on.
  • The next fraction in the program is 41/43. 13,060,694,016 leaves a remainder when divided by 43, so we move on.
  • The next fraction in the program is 13/41. 13,060,694,016 leaves a remainder when divided by 41, so we move on.
  • The next fraction in the program is 1/13. 13,060,694,016 leaves a remainder when divided by 13, so we move on.
  • The next fraction in the program is 1/3. 13,060,694,016 multiplied by 1/3 is 4,353,564,672, so we replace 13,060,694,016 with 4,353,564,672 and begin again.
  • The first fraction in the program is 17/65. 4,353,564,672 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 4,353,564,672 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 4,353,564,672 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 4,353,564,672 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 4,353,564,672 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 4,353,564,672 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 4,353,564,672 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 4,353,564,672 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 4,353,564,672 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 4,353,564,672 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 4,353,564,672 leaves a remainder when divided by 287, so we move on.
  • The next fraction in the program is 41/43. 4,353,564,672 leaves a remainder when divided by 43, so we move on.
  • The next fraction in the program is 13/41. 4,353,564,672 leaves a remainder when divided by 41, so we move on.
  • The next fraction in the program is 1/13. 4,353,564,672 leaves a remainder when divided by 13, so we move on.
  • The next fraction in the program is 1/3. 4,353,564,672 multiplied by 1/3 is 1,451,188,224, so we replace 4,353,564,672 with 1,451,188,224 and begin again.
  • The first fraction in the program is 17/65. 1,451,188,224 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 1,451,188,224 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 1,451,188,224 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 1,451,188,224 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 1,451,188,224 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 1,451,188,224 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 1,451,188,224 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 1,451,188,224 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 1,451,188,224 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 1,451,188,224 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 1,451,188,224 leaves a remainder when divided by 287, so we move on.
  • The next fraction in the program is 41/43. 1,451,188,224 leaves a remainder when divided by 43, so we move on.
  • The next fraction in the program is 13/41. 1,451,188,224 leaves a remainder when divided by 41, so we move on.
  • The next fraction in the program is 1/13. 1,451,188,224 leaves a remainder when divided by 13, so we move on.
  • The next fraction in the program is 1/3. 1,451,188,224 multiplied by 1/3 is 483,729,408, so we replace 1,451,188,224 with 483,729,408 and begin again.
  • The first fraction in the program is 17/65. 483,729,408 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 483,729,408 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 483,729,408 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 483,729,408 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 483,729,408 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 483,729,408 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 483,729,408 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 483,729,408 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 483,729,408 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 483,729,408 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 483,729,408 leaves a remainder when divided by 287, so we move on.
  • The next fraction in the program is 41/43. 483,729,408 leaves a remainder when divided by 43, so we move on.
  • The next fraction in the program is 13/41. 483,729,408 leaves a remainder when divided by 41, so we move on.
  • The next fraction in the program is 1/13. 483,729,408 leaves a remainder when divided by 13, so we move on.
  • The next fraction in the program is 1/3. 483,729,408 multiplied by 1/3 is 161,243,136, so we replace 483,729,408 with 161,243,136 and begin again.
  • The first fraction in the program is 17/65. 161,243,136 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 161,243,136 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 161,243,136 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 161,243,136 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 161,243,136 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 161,243,136 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 161,243,136 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 161,243,136 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 161,243,136 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 161,243,136 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 161,243,136 leaves a remainder when divided by 287, so we move on.
  • The next fraction in the program is 41/43. 161,243,136 leaves a remainder when divided by 43, so we move on.
  • The next fraction in the program is 13/41. 161,243,136 leaves a remainder when divided by 41, so we move on.
  • The next fraction in the program is 1/13. 161,243,136 leaves a remainder when divided by 13, so we move on.
  • The next fraction in the program is 1/3. 161,243,136 multiplied by 1/3 is 53,747,712, so we replace 161,243,136 with 53,747,712 and begin again.
  • The first fraction in the program is 17/65. 53,747,712 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 53,747,712 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 53,747,712 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 53,747,712 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 53,747,712 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 53,747,712 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 53,747,712 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 53,747,712 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 53,747,712 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 53,747,712 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 53,747,712 leaves a remainder when divided by 287, so we move on.
  • The next fraction in the program is 41/43. 53,747,712 leaves a remainder when divided by 43, so we move on.
  • The next fraction in the program is 13/41. 53,747,712 leaves a remainder when divided by 41, so we move on.
  • The next fraction in the program is 1/13. 53,747,712 leaves a remainder when divided by 13, so we move on.
  • The next fraction in the program is 1/3. 53,747,712 multiplied by 1/3 is 17,915,904, so we replace 53,747,712 with 17,915,904 and begin again.
  • The first fraction in the program is 17/65. 17,915,904 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 17,915,904 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 17,915,904 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 17,915,904 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 17,915,904 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 17,915,904 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 17,915,904 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 17,915,904 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 17,915,904 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 17,915,904 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 17,915,904 leaves a remainder when divided by 287, so we move on.
  • The next fraction in the program is 41/43. 17,915,904 leaves a remainder when divided by 43, so we move on.
  • The next fraction in the program is 13/41. 17,915,904 leaves a remainder when divided by 41, so we move on.
  • The next fraction in the program is 1/13. 17,915,904 leaves a remainder when divided by 13, so we move on.
  • The next fraction in the program is 1/3. 17,915,904 multiplied by 1/3 is 5,971,968, so we replace 17,915,904 with 5,971,968 and begin again.
  • The first fraction in the program is 17/65. 5,971,968 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 5,971,968 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 5,971,968 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 5,971,968 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 5,971,968 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 5,971,968 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 5,971,968 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 5,971,968 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 5,971,968 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 5,971,968 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 5,971,968 leaves a remainder when divided by 287, so we move on.
  • The next fraction in the program is 41/43. 5,971,968 leaves a remainder when divided by 43, so we move on.
  • The next fraction in the program is 13/41. 5,971,968 leaves a remainder when divided by 41, so we move on.
  • The next fraction in the program is 1/13. 5,971,968 leaves a remainder when divided by 13, so we move on.
  • The next fraction in the program is 1/3. 5,971,968 multiplied by 1/3 is 1,990,656, so we replace 5,971,968 with 1,990,656 and begin again.
  • The first fraction in the program is 17/65. 1,990,656 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 1,990,656 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 1,990,656 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 1,990,656 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 1,990,656 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 1,990,656 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 1,990,656 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 1,990,656 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 1,990,656 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 1,990,656 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 1,990,656 leaves a remainder when divided by 287, so we move on.
  • The next fraction in the program is 41/43. 1,990,656 leaves a remainder when divided by 43, so we move on.
  • The next fraction in the program is 13/41. 1,990,656 leaves a remainder when divided by 41, so we move on.
  • The next fraction in the program is 1/13. 1,990,656 leaves a remainder when divided by 13, so we move on.
  • The next fraction in the program is 1/3. 1,990,656 multiplied by 1/3 is 663,552, so we replace 1,990,656 with 663,552 and begin again.
  • The first fraction in the program is 17/65. 663,552 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 663,552 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 663,552 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 663,552 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 663,552 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 663,552 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 663,552 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 663,552 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 663,552 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 663,552 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 663,552 leaves a remainder when divided by 287, so we move on.
  • The next fraction in the program is 41/43. 663,552 leaves a remainder when divided by 43, so we move on.
  • The next fraction in the program is 13/41. 663,552 leaves a remainder when divided by 41, so we move on.
  • The next fraction in the program is 1/13. 663,552 leaves a remainder when divided by 13, so we move on.
  • The next fraction in the program is 1/3. 663,552 multiplied by 1/3 is 221,184, so we replace 663,552 with 221,184 and begin again.
  • The first fraction in the program is 17/65. 221,184 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 221,184 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 221,184 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 221,184 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 221,184 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 221,184 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 221,184 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 221,184 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 221,184 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 221,184 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 221,184 leaves a remainder when divided by 287, so we move on.
  • The next fraction in the program is 41/43. 221,184 leaves a remainder when divided by 43, so we move on.
  • The next fraction in the program is 13/41. 221,184 leaves a remainder when divided by 41, so we move on.
  • The next fraction in the program is 1/13. 221,184 leaves a remainder when divided by 13, so we move on.
  • The next fraction in the program is 1/3. 221,184 multiplied by 1/3 is 73,728, so we replace 221,184 with 73,728 and begin again.
  • The first fraction in the program is 17/65. 73,728 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 73,728 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 73,728 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 73,728 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 73,728 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 73,728 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 73,728 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 73,728 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 73,728 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 73,728 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 73,728 leaves a remainder when divided by 287, so we move on.
  • The next fraction in the program is 41/43. 73,728 leaves a remainder when divided by 43, so we move on.
  • The next fraction in the program is 13/41. 73,728 leaves a remainder when divided by 41, so we move on.
  • The next fraction in the program is 1/13. 73,728 leaves a remainder when divided by 13, so we move on.
  • The next fraction in the program is 1/3. 73,728 multiplied by 1/3 is 24,576, so we replace 73,728 with 24,576 and begin again.
  • The first fraction in the program is 17/65. 24,576 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 24,576 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 24,576 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 24,576 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 24,576 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 24,576 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 24,576 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 24,576 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 24,576 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 24,576 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 24,576 leaves a remainder when divided by 287, so we move on.
  • The next fraction in the program is 41/43. 24,576 leaves a remainder when divided by 43, so we move on.
  • The next fraction in the program is 13/41. 24,576 leaves a remainder when divided by 41, so we move on.
  • The next fraction in the program is 1/13. 24,576 leaves a remainder when divided by 13, so we move on.
  • The next fraction in the program is 1/3. 24,576 multiplied by 1/3 is 8,192, so we replace 24,576 with 8,192 and begin again.
  • The first fraction in the program is 17/65. 8,192 leaves a remainder when divided by 65, so we move on.
  • The next fraction in the program is 133/34. 8,192 leaves a remainder when divided by 34, so we move on.
  • The next fraction in the program is 17/19. 8,192 leaves a remainder when divided by 19, so we move on.
  • The next fraction in the program is 23/17. 8,192 leaves a remainder when divided by 17, so we move on.
  • The next fraction in the program is 2,233/69. 8,192 leaves a remainder when divided by 69, so we move on.
  • The next fraction in the program is 23/29. 8,192 leaves a remainder when divided by 29, so we move on.
  • The next fraction in the program is 31/23. 8,192 leaves a remainder when divided by 23, so we move on.
  • The next fraction in the program is 74/341. 8,192 leaves a remainder when divided by 341, so we move on.
  • The next fraction in the program is 31/37. 8,192 leaves a remainder when divided by 37, so we move on.
  • The next fraction in the program is 41/31. 8,192 leaves a remainder when divided by 31, so we move on.
  • The next fraction in the program is 129/287. 8,192 leaves a remainder when divided by 287, so we move on.
  • The next fraction in the program is 41/43. 8,192 leaves a remainder when divided by 43, so we move on.
  • The next fraction in the program is 13/41. 8,192 leaves a remainder when divided by 41, so we move on.
  • The next fraction in the program is 1/13. 8,192 leaves a remainder when divided by 13, so we move on.
  • The next fraction in the program is 1/3. 8,192 leaves a remainder when divided by 3, so we move on.

None of the demoninators in the program divide evenly into 8,192, so the program halts.

All FRACTRAN programs produce a series of values for n, and the result we want must be extracted from them. For our Fibonacci program, the result we want is the log2 of the last value for n.

The last value of n is 8,192, and log2(8,192) is 13, the answer we want. The 7th Fibonacci number is 13.

1,218,750
318,750
1,246,875
1,115,625
1,509,375
48,846,875
38,740,625
52,215,625
11,331,250
9,493,750
12,556,250
5,643,750
5,381,250
2,418,750
2,306,250
731,250
191,250
748,125
669,375
905,625
29,308,125
23,244,375
752,241,875
596,605,625
804,120,625
174,501,250
146,203,750
31,727,500
26,582,500
35,157,500
15,802,500
15,067,500
6,772,500
6,457,500
2,902,500
2,767,500
877,500
229,500
897,750
803,250
3,142,125
2,811,375
3,803,625
123,094,125
97,626,375
3,159,415,875
2,505,743,625
81,091,674,125
64,314,086,375
86,684,203,375
18,811,234,750
15,760,764,250
3,420,224,500
2,865,593,500
621,859,000
521,017,000
689,087,000
309,729,000
295,323,000
132,741,000
126,567,000
56,889,000
54,243,000
24,381,000
23,247,000
10,449,000
9,963,000
3,159,000
826,200
3,231,900
2,891,700
11,311,650
10,120,950
39,590,775
35,423,325
47,925,675
1,550,985,975
1,230,092,325
39,808,640,025
31,572,369,675
1,021,755,093,975
810,357,488,325
26,225,047,412,025
20,799,175,533,675
673,109,550,241,975
533,845,505,364,325
719,530,898,534,525
156,144,535,165,850
130,823,799,733,550
28,389,915,484,700
23,786,145,406,100
5,161,802,815,400
4,324,753,710,200
938,509,602,800
786,318,856,400
170,638,109,600
142,967,064,800
189,085,472,800
84,989,637,600
81,036,631,200
36,424,130,400
34,729,984,800
15,610,341,600
14,884,279,200
6,690,146,400
6,378,976,800
2,867,205,600
2,733,847,200
1,228,802,400
1,171,648,800
526,629,600
502,135,200
225,698,400
215,200,800
68,234,400
17,845,920
69,809,040
62,460,720
244,331,640
218,612,520
855,160,740
765,143,820
2,993,062,590
2,678,003,370
10,475,719,065
9,373,011,795
12,681,133,605
410,390,888,985
325,482,429,195
10,533,366,150,615
8,354,049,016,005
270,356,397,865,785
214,420,591,410,795
6,939,147,545,221,815
5,503,461,846,210,405
178,104,786,994,026,585
141,255,520,719,400,395
4,571,356,199,513,349,015
3,625,558,365,131,276,805
117,331,475,787,509,291,385
93,055,998,038,369,437,995
3,011,507,878,546,071,812,215
2,388,437,282,984,815,575,205
3,219,198,077,066,490,557,885
698,594,304,114,135,780,890
585,308,741,284,816,465,070
127,017,146,202,570,141,980
106,419,771,142,693,902,740
23,094,026,582,285,480,360
19,349,049,298,671,618,680
4,198,913,924,051,905,520
3,518,008,963,394,839,760
763,438,895,282,164,640
639,637,993,344,516,320
138,807,071,869,484,480
116,297,816,971,730,240
25,237,649,430,815,360
21,145,057,631,223,680
4,588,663,532,875,520
3,844,555,932,949,760
5,084,735,266,159,360
2,285,473,342,629,120
2,179,172,256,925,440
979,488,575,412,480
933,930,967,253,760
419,780,818,033,920
400,256,128,823,040
179,906,064,871,680
171,538,340,924,160
77,102,599,230,720
73,516,431,824,640
33,043,971,098,880
31,507,042,210,560
14,161,701,899,520
13,503,018,090,240
6,069,300,814,080
5,787,007,752,960
2,601,128,920,320
2,480,146,179,840
1,114,769,537,280
1,062,919,791,360
477,758,373,120
455,537,053,440
204,753,588,480
195,230,165,760
87,751,537,920
83,670,071,040
26,529,534,720
6,938,493,696
27,141,754,752
24,284,727,936
94,996,141,632
84,996,547,776
332,486,495,712
297,487,917,216
1,163,702,734,992
1,041,207,710,256
4,072,959,572,472
3,644,226,985,896
14,255,358,503,652
12,754,794,450,636
49,893,754,762,782
44,641,780,577,226
174,628,141,669,737
156,246,232,020,291
211,391,960,968,629
6,841,134,041,202,153
5,425,726,998,194,811
175,589,107,057,521,927
139,260,326,287,000,149
4,506,787,081,143,062,793
3,574,348,374,699,670,491
115,674,201,749,338,611,687
91,741,608,283,958,209,269
2,968,971,178,233,024,366,633
2,354,701,279,288,260,704,571
76,203,593,574,647,625,410,247
60,437,332,835,065,358,083,989
1,955,892,235,082,622,385,529,673
1,551,224,876,100,010,857,489,051
50,201,234,033,787,307,895,261,607
39,814,771,819,900,278,675,552,309
1,288,498,340,200,540,902,645,047,913
1,021,912,476,710,773,819,339,175,931
33,071,457,398,480,549,834,556,229,767
26,229,086,902,243,194,696,372,182,229
848,834,073,227,667,445,753,609,897,353
673,213,230,490,908,663,873,552,677,211
21,786,741,212,843,464,441,009,320,698,727
17,279,139,582,599,989,039,421,185,381,749
559,193,024,462,982,253,985,905,897,933,993
443,497,915,953,399,718,678,477,091,464,891
597,758,060,632,843,099,088,382,166,757,027
129,718,758,025,895,569,890,147,449,677,478
108,683,283,751,426,018,016,069,484,864,914
23,585,228,731,981,012,707,299,536,304,996
19,760,597,045,713,821,457,467,179,066,348
4,288,223,405,814,729,583,145,370,237,272
3,592,835,826,493,422,083,175,850,739,336
779,676,982,875,405,378,753,703,679,504
653,242,877,544,258,560,577,427,407,152
141,759,451,431,891,887,046,127,941,728
118,771,432,280,774,283,741,350,437,664
25,774,445,714,889,434,008,386,898,496
21,594,805,869,231,687,952,972,806,848
4,686,262,857,252,624,365,161,254,272
3,926,328,339,860,306,900,540,510,336
852,047,792,227,749,884,574,773,504
713,877,879,974,601,254,643,729,152
154,917,780,405,045,433,559,049,728
129,795,978,177,200,228,117,041,664
28,166,869,164,553,715,192,554,496
23,599,268,759,490,950,566,734,848
5,121,248,939,009,766,398,646,272
4,290,776,138,089,263,739,406,336
931,136,170,729,048,436,117,504
780,141,116,016,229,770,801,152
169,297,485,587,099,715,657,728
141,843,839,275,678,140,145,664
187,599,916,461,380,765,999,104
84,321,913,670,794,839,072,768
80,399,964,197,734,613,999,616
36,137,963,001,769,216,745,472
34,457,127,513,314,834,571,264
15,487,698,429,329,664,319,488
14,767,340,362,849,214,816,256
6,637,585,041,141,284,708,352
6,328,860,155,506,806,349,824
2,844,679,303,346,264,875,008
2,712,368,638,074,345,578,496
1,219,148,272,862,684,946,432
1,162,443,702,031,862,390,784
522,492,116,941,150,691,328
498,190,158,013,655,310,336
223,925,192,974,778,867,712
213,510,067,720,137,990,144
95,967,939,846,333,800,448
91,504,314,737,201,995,776
41,129,117,077,000,200,192
39,216,134,887,372,283,904
17,626,764,461,571,514,368
16,806,914,951,730,978,816
7,554,327,626,387,791,872
7,202,963,550,741,848,064
3,237,568,982,737,625,088
3,086,984,378,889,363,456
1,387,529,564,030,410,752
1,322,993,305,238,298,624
594,655,527,441,604,608
566,997,130,816,413,696
254,852,368,903,544,832
242,998,770,349,891,584
109,222,443,815,804,928
104,142,330,149,953,536
46,809,618,778,202,112
44,632,427,207,122,944
20,061,265,190,658,048
19,128,183,088,766,976
8,597,685,081,710,592
8,197,792,752,328,704
3,684,722,177,875,968
3,513,339,750,998,016
1,113,985,774,706,688
85,691,213,438,976
28,563,737,812,992
9,521,245,937,664
3,173,748,645,888
1,057,916,215,296
352,638,738,432
117,546,246,144
39,182,082,048
13,060,694,016
4,353,564,672
1,451,188,224
483,729,408
161,243,136
53,747,712
17,915,904
5,971,968
1,990,656
663,552
221,184
73,728
24,576
8,192
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment