Have you ever seen this wonderful spiral ? The Ulam Spiral is arranging prime numbers in a clockwise spiral starting in 0.
Given an n by n matrix of 0s, fill it with 1 if the number is prime, in that order :
[7 8 9;
6 1 2;
5 4 3;]
Which will give you :
[1 0 0;
0 0 1;
1 0 1;]
As you experiment, look out for the strange patterns that emerge!
Solution Stats
Solution Comments
Show comments
Loading...
Problem Recent Solvers14
Suggested Problems
-
2244 Solvers
-
Project Euler: Problem 7, Nth prime
1753 Solvers
-
Find third Side of a right triangle given hypotenuse and a side. No * - or other functions allowed
252 Solvers
-
Split a string into chunks of specified length
2061 Solvers
-
Solve a System of Linear Equations
14397 Solvers
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!