About 308,000 results
Open links in new tab
  1. Check if a Number is Palindromic Prime - GeeksforGeeks

    Oct 10, 2024 · A palindromic prime (sometimes called a palprime) is a prime number that is also a palindromic number. Given a number n, print all palindromic primes smaller than or equal to n. For …

  2. Intro-to-Java-Programming/Exercise_06/Exercise_06_26/Exercise

    /* (Palindromic prime) A palindromic prime is a prime number and also palindromic. For example, 131 is a prime and also a palindromic prime, as are 313 and 757. Write a program that displays the first 100 …

  3. Prime Number Program in Java - GeeksforGeeks

    Mar 17, 2026 · A prime number is a natural number greater than 1, divisible only by 1 and itself. Examples include 2, 3, 5, 7, and 11. These numbers have no other factors besides themselves and …

  4. Palindromic Prime - GeeksforGeeks

    Jul 23, 2025 · Palindromic primes are unique numbers that combine the properties of being prime and palindromic. They are rare and get harder to find as the numbers get bigger, yet they are interesting …

  5. Java Program to display first n or first 100 prime numbers

    Sep 10, 2022 · Java Programs to display first n or first 100 prime numbers. To display the first 100 prime numbers, you can either enter n value as 100 in the above program OR write a program like this:

  6. Palindromic Prime - from Wolfram MathWorld

    A palindromic prime is a number that is simultaneously palindromic and prime. The first few (base-10) palindromic primes are 2, 3, 5, 7, 11, 101, 131, 151, 181, 191, 313, 353, 373, 383, 727, 757, 787, ...

  7. How to Find Prime and Palindrome Numbers using Multi-Threading in Java ...

    Aug 3, 2021 · Problem Statement: Write a two-threaded program, where one thread finds all prime numbers (in 0 to 100) and another thread finds all palindrome numbers (in 10 to 1000). Schedule …

  8. List of prime numbers - Wikipedia

    List of prime numbers This is a list of articles about prime numbers. A prime number (or prime) is a natural number greater than 1 that has no divisors other than 1 and itself. By Euclid's theorem, there …

  9. Palindrome Number Program in Java - GeeksforGeeks

    Jul 23, 2025 · A given number can be said to be palindromic if the reverse of the given number is the same as that of a given number. In this article, we will write a Program to check if a number is a …

  10. Generating Prime Numbers in Java - Baeldung

    Jan 8, 2024 · In this tutorial, we’ll show various ways in which we can generate prime numbers using Java. If you’re looking to check if a number is prime – here’s a quick guide on how to do that.