Armstrong Number Checker
Test whether a number equals the sum of its powered digits.
How the armstrong number checker works
An Armstrong number, also called a narcissistic number, equals the sum obtained by raising every decimal digit to the number of digits. The exponent therefore changes with the input length. This checker keeps that definition explicit by displaying the common power, each powered term, their total, and the final equality verdict instead of returning an unexplained yes or no.
The default 153 has three digits, so the checker evaluates 1 cubed, 5 cubed, and 3 cubed. Those terms are 1, 125, and 27, and their verified total is 153. Because the powered-digit sum exactly matches the original integer, the result identifies 153 as an Armstrong number with power three.
Reading armstrong number checker results privately
This page uses the usual base-ten definition and accepts nonnegative safe integers only. Leading zeros are not preserved by a number input, although they would not change the numerical total. Large digit counts can create powers beyond exact JavaScript integer precision, so the safe-integer boundary is enforced before the decomposition begins. This armstrong number checker calculation runs entirely in your browser, so the numbers you enter never leave your device.
Frequently Asked Questions
Why does the exponent equal the digit count?
That is the defining Armstrong-number rule. A three-digit candidate uses cubes, while a four-digit candidate uses fourth powers.
Is every one-digit number an Armstrong number?
Yes. Raising a single digit to the first power returns the same digit.
Is the armstrong number checker private?
Yes. Its inputs and results stay in your browser. Bushe.co does not upload or store the values used in this calculation.
Browse the full set of free, private, in-browser tools.