Number-Spelling Curiosities
By Lucian — builder & engineer, LK Forge
Spell out the whole numbers and quiet patterns fall out of the letters. We wrote the same number-to-words logic behind our converter and swept it across every integer to check the famous claims — and found a few more. Every count below is exact and reproducible.
Three numbers that stand alone
Sweep every number up past a hundred thousand and three of them turn out to be the sole holders of a property — no ties, no runners-up:
FORTY the only number whose letters run in alphabetical order — f, o, r, t, y. ONE the only number whose letters run in reverse order — o, n, e. FOUR the only number equal to its own length: four letters, and it means 4. When each letter first shows up
Count upward and track the first time you write each letter. Most arrive almost immediately — by twenty you've used all but a handful. Then there are the stragglers, and two letters that never come at all:
by twenty hundred thousand million+ never
D waits for one hundred, A for one thousand, M for a million, B for a billion — and C holds out all the way to octillion (1027). J and K never appear at all: no English number name contains either letter.
The longest-winded numbers
Under 100, the wordiest number takes 12 letters — seventy-three (also seventy-seven and seventy-eight). Under 1,000, the record is 24 letters, held by nine numbers that all pair the longest hundreds with the longest tens:
three, seven and eight hundred, each followed by seventy-three, seventy-seven or seventy-eight — for example three hundred seventy-three.
A note on the rules: these all assume American English, short scale, and no “and” — one hundred one, not one hundred and one. British usage inserts “and”, whose A would land far earlier and undo the headline fact. The spelling logic is the same one behind our Numbers to Words converter.
- Method: one dependency-free script spells every integer (US short scale, no “and”) and scans the letters. No word list, no data files.
- Uniqueness: forty (alphabetical), one (reverse), four (self-counting) are the sole holders across the scanned range.
- Letter debuts: A at 1,000, D at 100, M at a million, B at a billion, C at an octillion; J and K never.
Every figure here is printed by that one script. Change the spelling convention (British “and”, long scale) and several results move — which is exactly why the convention is stated.