Skip to content

Latest commit

 

History

History
17 lines (11 loc) · 852 Bytes

README.md

File metadata and controls

17 lines (11 loc) · 852 Bytes

Sheldon Prime Finder

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.

Description

A Sheldon prime number is a prime number that meets the following properties:

  1. It is a prime number.
  2. Its position in the list of prime numbers is equal to the product of its digits.
  3. The position of the reversed number in the list of prime numbers is equal to the reversed number of its original position.

Features

  • 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.