Write a function to find all primes p and non-negative integers k that solve the equation
where a is an integer. If there are no solutions for a given value of a, return p = [] and k = [].
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers10
Suggested Problems
-
Find common elements in matrix rows
2713 Solvers
-
Renaming a field in a structure array
1578 Solvers
-
Project Euler: Problem 8, Find largest product in a large string of numbers
1304 Solvers
-
Create a vector whose elements depend on the previous element
782 Solvers
-
Factorions: Numbers that equal the sum of the factorials of their digits
81 Solvers
More from this Author321
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
This problem is like CP 60331 in that there's an elegant solution that uses a bit of math, but the brute force solutions works just fine. Both are inspired by YouTube videos.