Problem 49783. List the good primes

The mth prime p_m is classified as “good” if p_m^2 > p_{m-k}p_{m+k} for 1 <= k <= m-1. For example, 5 is a good prime because 5^2 = 25 is greater than 2x11 = 22 and 3x7 = 21, but 7 is not because 7^2 < 5x11.
Write a function to list the first n good primes.

Solution Stats

30.43% Correct | 69.57% Incorrect
Last Solution submitted on Apr 30, 2023

Problem Comments

Solution Comments

Show comments

Problem Recent Solvers13

Suggested Problems

More from this Author244

Problem Tags

Community Treasure Hunt

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

Start Hunting!