This project is a Java application that identifies Sheldon prime numbers. Currently, the only known Sheldon prime number is 73. The program generates prime numbers up to a user-specified maximum and checks if they meet the properties of a Sheldon prime number.
A Sheldon prime number is a prime number that meets the following properties:
- It is a prime number.
- Its position in the list of prime numbers is equal to the product of its digits.
- The position of the reversed number in the list of prime numbers is equal to the reversed number of its original position.
- Prime number generation using the Sieve of Eratosthenes.
- Verification of the properties of Sheldon prime numbers.
- Measurement of execution time for prime number generation and identification of Sheldon prime numbers.