Numbers That Are Palindromes: Examples, Patterns, and Facts
Learn which numbers are palindromes, see clear examples and digit patterns, count them by length, and understand primes, squares, zero, and key rules.
Table of Contents ▼
- Quick Answer
- What Makes Numbers That Are Palindromes?
- A Useful Palindrome Numbers List
- The Digit Shapes Behind the Sequence
- How Many n-Digit Palindromes Are There?
- How to Build One and Find the Next One
- Palindromic Primes and the Rule of 11
- Palindromic Squares and Other Special Cases
- Rules That Can Change the Answer
- Common Mistakes to Avoid
- Frequently Asked Questions
- What numbers are palindromes?
- Is 0 a palindrome number?
- Are all one-digit numbers palindromes?
- How many three-digit palindrome numbers exist?
- How many four-digit palindrome numbers exist?
- Why are even-digit palindromes divisible by 11?
- Is there a largest palindrome number?
- What is the next palindrome after 999?
- Recognizing the Pattern at a Glance
Numbers that are palindromes keep the same digit order when read from either direction. Turn 56865 around, for example, and you still have 56865. This simple rule creates an unlimited family of numbers with useful patterns. Some contain an odd number of digits and have one central digit. Others have an even number of digits and split into two mirrored halves.
You may also want a list of examples, a quick way to recognize the pattern, or a formula for counting palindromes of a certain length. This guide covers those needs and unusual cases involving zero, minus signs, leading zeros, number bases, prime numbers, and perfect squares. By the end, you will be able to identify, build, and count decimal palindromes without checking a huge list.
Quick Answer
A palindromic number is a number whose standard numeral remains identical when its digits are reversed. Examples include 22, 303, 4774, and 56865. The outside digits must match, followed by the next inner pair, until the center is reached. There are infinitely many such numbers.
What Makes Numbers That Are Palindromes?
The test applies to the written digits, not to how a number sounds. Start with the leftmost and rightmost digits. If they match, move inward and compare the next pair. The number is a palindrome only if every pair matches.
Consider 812218:
- The first and last digits are both 8.
- The second and fifth digits are both 1.
- The third and fourth digits are both 2.
Every pair agrees, so 812218 is palindromic. By contrast, 812228 fails because its second digit is 1 while its second-to-last digit is 2.
An odd-length palindrome has an unpaired center digit. That digit can be anything because reversing the number leaves it in the same place. In 56865, the middle digit is 8. The pairs 5 and 5, then 6 and 6, determine whether the number passes the test.

Figure 1: Palindromic numbers follow strict bilateral symmetry from the outer digits inward.
A Useful Palindrome Numbers List
The sequence begins with the one-digit values and continues forever. Here is a compact list organized by length:
| Digit Length | Examples |
|---|---|
| One digit | 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 |
| Two digits | 11, 22, 33, 44, 55, 66, 77, 88, 99 |
| Three digits | 101, 111, 121, 131, 141, 151, 161, 171, 181, 191 |
| Four digits | 1001, 2112, 3443, 4774, 6226, 7557, 8998, 9889 |
| Five digits | 10401, 23532, 56865, 70307, 91819 |
| Six digits | 112211, 305503, 456654, 812218, 990099 |
This is a selection, not a complete list. Three-digit palindrome numbers run from 101 through 999, with many omitted above. Use the table as a pattern guide rather than something to memorize.
If a question asks for palindrome numbers between 1 and 100, the answer is 1 through 9, followed by 11, 22, 33, 44, 55, 66, 77, 88, and 99. The number 100 is not included because its reverse is 001, which represents 1 in standard notation.
The Digit Shapes Behind the Sequence
Every decimal palindrome can be described by a mirrored form. Letters stand for digits that must reappear in corresponding positions.
| Length | General Form | Example |
|---|---|---|
| 2 digits | AA | 77 |
| 3 digits | ABA | 303 |
| 4 digits | ABBA | 4774 |
| 5 digits | ABCBA | 56865 |
| 6 digits | ABCCBA | 812218 |
In a four-digit form such as ABBA, A cannot be zero because a standard four-digit number cannot begin with zero. B may be any digit, including zero. This means 9009 is valid: the outer pair is 9, and the inner pair is 0.
Only the first half of an even-length palindrome is independent. Once AB is selected, BA is forced. With an odd length, the first half plus the center determines everything.
This mirrored structure makes palindromic numbers easy to generate. It also explains why two neighboring digit lengths can contain the same number of them.

Figure 2: Combinatorics allows exact calculation of palindromes for any digit length n.
How Many n-Digit Palindromes Are There?
For positive base-10 numbers with exactly n digits, the count is:
9 × 10^(⌈n/2⌉ - 1)
The ceiling symbols mean round n/2 up. The first digit has nine choices, from 1 to 9. Each remaining digit in the independent half has ten choices (0 to 9). The mirrored half adds no choices.
| Number of Digits (n) | Calculation | Total Palindromes |
|---|---|---|
| 1 | 9 × 10^0 | 9 |
| 2 | 9 × 10^0 | 9 |
| 3 | 9 × 10^1 | 90 |
| 4 | 9 × 10^1 | 90 |
| 5 | 9 × 10^2 | 900 |
| 6 | 9 × 10^2 | 900 |
Why are there 90 four-digit palindromes? Their form is ABBA. A has nine possible values (1–9) because it cannot be zero, while B has ten (0–9). Therefore, 9 × 10 = 90.
The formula counts positive numbers of an exact length. If zero is included in a list of one-digit palindromes, that list contains ten values rather than nine.
How to Build One and Find the Next One
To create a palindrome, choose the left portion and reflect it. If you choose 624 for an odd five-digit number, keep 4 as the center and mirror 62 to get 62426. For an even six-digit number, mirror all of 624 to get 624426.
Finding the next palindrome after a given number takes one extra comparison:
- Copy the left half onto the right in reverse order.
- If the mirrored result is larger than the original number, it is the next palindrome.
- If it is too small or equal, increase the left half by one and mirror again.
For 5267, mirroring 52 gives 5225, which is smaller than 5267. Increase 52 to 53 and mirror it. The result is 5335, so 5335 is the next palindrome after 5267.
Carrying can change the length. After 999, the next palindrome is 1001. This still follows the same principle, but the independent left portion gains a digit.
Palindromic Primes and the Rule of 11
A palindromic prime is both palindromic and prime. It has no positive divisors other than 1 and itself. Examples include 151, 181, 191, 313, and 353.
These numbers have a striking restriction: every decimal palindrome with an even number of digits is divisible by 11. For a four-digit number ABBA, its value can be written as:
1000A + 100B + 10B + A = 1001A + 110B = 11(91A + 10B)
The factor 11 is always present. The same divisibility rule extends to six, eight, and other even digit counts because the alternating sum of matching mirrored digits cancels to zero. As a result, 11 itself is the only palindromic prime with an even number of digits. Every longer even-length palindrome is a multiple of 11 greater than 11, making it composite.
Not every odd-length palindrome is prime, of course. The number 303 is divisible by 3. Palindromic form describes digit symmetry, not primality.

Figure 3: Symmetry reveals hidden geometric and arithmetic elegance across numbers and physical laws.
Palindromic Squares and Other Special Cases
Some perfect squares are also palindromes. Verified examples include:
- 484 = 22²
- 676 = 26²
- 10201 = 101²
The square of a palindrome need not be palindromic, and the root of a palindromic square need not be one. Check the two properties separately.
Dates and clock times can display symmetric digits, but they depend on formatting. A date may work in month-day-year order but fail in day-month-year order. Separators are normally ignored, while displayed zeros are retained because dates and times are formatted strings, not ordinary integers.
Rules That Can Change the Answer
Before deciding whether a value belongs on a palindrome numbers list, state the representation rules:
- Zero: Under the usual nonnegative-integer definition, 0 is a one-digit palindrome. If a problem asks only for positive palindromes, the sequence starts at 1.
- Single-digit values: Every nonnegative single digit is palindromic because reversing one digit cannot change its position.
- Leading zeros: Ordinary integer notation does not keep them. Writing
010does not make 10 a three-digit palindrome. It is simply 10, whose reverse digit order is 01, or 1. - Negative values: Under the common character-by-character rule,
-121is not a palindrome because the minus sign appears on only one end. Some exercises ignore the sign and test the absolute value, but that is a different stated convention. - Number bases: Palindrome status belongs to a representation, not permanently to a value. A number can look palindromic in base 10 and not in base 2, or the reverse. Unless a problem names another base, “palindrome number” normally refers to decimal notation.
- Upper limit: There is no largest palindrome. Given any one, longer palindromes can always be made by selecting a new left half and mirroring it.
Common Mistakes to Avoid
The main errors come from checking appearance too quickly or changing the rules midway:
- Do not compare only the outside digits. Every inner pair must match.
- Do not add leading zeros to force symmetry in an ordinary integer.
- Do not assume that all repeated-digit numbers are the only palindromes. Values such as 70307 also qualify.
- Do not confuse “contains a palindromic part” with “is a palindrome.” The entire numeral must reverse to itself.
- Do not treat commas or separators as digits. First decide whether you are testing a mathematical integer or a formatted display.
- Do not assume that every palindrome is prime, square, or divisible by 11. The 11 rule applies specifically to even-length decimal palindromes.
Frequently Asked Questions
What numbers are palindromes?
They are numbers whose standard digit sequence remains unchanged when reversed. Examples include 7, 44, 303, 4774, and 56865. For a multidigit value, the first digit must match the last, the second must match the second-to-last, and so on.
Is 0 a palindrome number?
Yes, 0 is normally treated as a palindrome when nonnegative integers are allowed. It contains one digit, so reversal leaves it unchanged. If a question specifically asks for positive palindrome numbers, 0 is excluded because it is neither positive nor negative.
Are all one-digit numbers palindromes?
All nonnegative one-digit integers, 0 through 9, are palindromes. Each has only one symbol, which cannot change position when reversed. Negative one-digit values usually do not qualify under the written-symbol definition because their minus signs would move to the other end.
How many three-digit palindrome numbers exist?
There are 90. A three-digit palindrome has the form ABA. A has nine choices (1 through 9) because the number cannot start with zero. B has ten choices (0 through 9). Multiplying 9 by 10 gives 90.
How many four-digit palindrome numbers exist?
There are also 90. A four-digit palindrome follows ABBA. The first digit A has nine possible values, and B has ten. Once those two digits are chosen, the last two positions are fixed by reflection, giving 9 × 10 = 90.
Why are even-digit palindromes divisible by 11?
The alternating sum of their digits is zero because matching digits occur in opposite alternating positions. A number is divisible by 11 when this alternating sum is a multiple of 11. Therefore, every even-length decimal palindrome has 11 as a factor.
Is there a largest palindrome number?
No. Palindromic numbers form an infinite sequence. Whatever palindrome you choose, you can construct a larger one by using more digits or choosing a larger left half and reflecting it. Any published “largest palindrome” must therefore refer to a limited category or record.
What is the next palindrome after 999?
The next one is 1001. There is no larger three-digit number after 999, so the sequence moves to four digits. The first four-digit palindrome has the form ABBA with A = 1 and B = 0, producing 1001.
Recognizing the Pattern at a Glance
Numbers that are palindromes are governed by reflection: each digit on the left determines a matching digit on the right. That insight is more useful than memorizing a long sequence. It lets you test a value from the outside inward, generate new examples, find the next one, and calculate how many exist at any digit length.
Remember the representation rules as well. Zero depends on whether the set includes nonnegative values, minus signs usually disqualify negative numbers, and leading zeros do not belong to standard integer notation. Once those details are clear, palindrome-number questions become structured exercises in digit symmetry rather than guesswork.
Check Your Own Words & Numbers
Test any word, sentence, date, or number with our interactive palindrome tool. Automatically normalizes punctuation, spaces, and casing.
Related Articles
Explore more in-depth guides and analysis.
Palindrome Program in Java: How to Check a Palindrome With Examples
Learn how to build a palindrome program in Java for numbers and strings using loops, StringBuilder, two pointers, and recursion.
Palindrome Python Guide: Check Strings and Numbers
Learn palindrome Python methods for strings and numbers using slicing, loops, functions, recursion, text normalization, and practical examples for beginners.
What Is a Palindrome? Meaning, Types, and Examples
What is a palindrome? Learn its meaning, pronunciation, types, and clear examples using words, phrases, names, numbers, dates, and times in simple language.