Problem 58498. Compute the Sisyphus sequence
Solution Stats
Problem Comments
-
3 Comments
For the case flag=false, what does "next largest prime" mean? I don't understand how you get 1, 3, 8, 4, 2, 1, 4, 2, 1, 8, 4, 2, 1, 12, 6, 3, 16, 8, 4, 2, 1….
I changed it to "next largest unused prime". That is, once you use a prime, delete it from the list. Start at 1, which is odd. The NLUP is 2, so the next term is 3. Then the NLUP is 5, so the next term is 8. Then 4, 2, 1. Then the NLUP is 3. Then 4, 2, 1. Then NLUP = 7, etc. Does that help?
I see now--because a(2)=3 you add p=5 instead of p=3, and then go back and use p=3 the next time. It seems like this is the only time this happens--from then on the next largest unused prime is always the next prime.
Solution Comments
Show commentsProblem Recent Solvers5
Suggested Problems
-
1911 Solvers
-
Renaming a field in a structure array
1522 Solvers
-
Given an unsigned integer x, find the largest y by rearranging the bits in x
1829 Solvers
-
Rotate input square matrix 90 degrees CCW without rot90
617 Solvers
-
348 Solvers
More from this Author281
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!