Problem 60581. List primes of the form xy+z

Consider three consecutive integers x, y = x+1, and z = x+2. When is the number xy+z prime? For example, if x = 3 or x = 5, then the results are 17 and 37, both prime, but if x = 7 or x = 11, the results are 65 and 145, which are composite.
Write a function to list prime numbers less than or equal to the input that can be written in the form . The function should also return the values of x (i.e., the smallest number of the triple) leading to the primes.
Optional: Prove that the number of primes of this form is infinite.

Solution Stats

75.0% Correct | 25.0% Incorrect
Last Solution submitted on Jul 15, 2024

Solution Comments

Show comments

Problem Recent Solvers7

Suggested Problems

More from this Author269

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!