Narcissistic Number Checker
Check if a number equals the sum of its digits raised to the digit count.
Result
How to use
- Enter your values in the fields above.
- Press Calculate to see your result instantly.
- Use the Share button to copy a link to your result.
About this calculator
A narcissistic number (also called an Armstrong number or plus perfect number) is a number that equals the sum of its own digits, each raised to the power of the digit count. For example, 153 has 3 digits, and 1³ + 5³ + 3³ = 1 + 125 + 27 = 153 — the number is rebuilt entirely from its own digits. Single-digit numbers (0-9) are trivially narcissistic since any digit to the power of 1 is itself, and beyond those the next examples are 153, 370, 371 and 407 in base 10.
These numbers are a classic topic in recreational mathematics and a favorite first coding exercise, since checking one requires nothing more than splitting a number into digits, raising each to a power and summing — a nice loop-and-modulo exercise for students learning any programming language. They have no deep number-theoretic significance but are popular in math clubs, puzzle sites and programming interview practice.
This calculator takes any whole number, breaks it into its digits, raises each to the power of the digit count, sums them, and tells you instantly whether it's a narcissistic number.
Was this helpful?
Popular calculators
Loan Calculator
Monthly payment, total interest and full amortization schedule.
Percentage Calculator
Percent change, percent of, and ratio calculations.
Discount Calculator
Calculate final price, savings, and discount amount.
BMI Calculator
Body mass index from height and weight (metric or imperial).
Age Calculator
Compute your exact age in years, months and days from a birth date.
Compound Interest Calculator
Calculate the final amount and interest earned with compounding.
All Calculators
No calculators found
Comments (0)