login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A356024 a(n) is the next higher integer than n whose spelling in US English comes lexicographically later. 0

%I #6 Jul 24 2022 13:04:43

%S 2,200,12,6,6,10,10,9,10,12,12,20,20,16,16,20,20,19,20,21,22,200,200,

%T 26,26,200,200,29,200,31,32,200,200,36,36,200,200,39,200,41,42,60,60,

%U 46,46,60,60,49,60,51,52,60,60,56,56,60,60,59,60,61,62,200,200

%N a(n) is the next higher integer than n whose spelling in US English comes lexicographically later.

%C Alphabetical order is with commas removed, but with spaces included, e.g., 8800 ("eight thousand eight hundred") would precede 8018 ("eight thousand eighteen").

%C In extending the sequence to large numbers, the "American system" (Weisstein link), also known as the "short scale" (Wikipedia link), is used.

%H Eric Weisstein's World of Mathematics, <a href="https://mathworld.wolfram.com/LargeNumber.html">Large Number</a>

%H Wikipedia, <a href="https://en.wikipedia.org/wiki/Names_of_large_numbers">Names of Large Numbers</a>

%H Wiktionary, <a href="https://en.wiktionary.org/wiki/one_hundred_one">one hundred one</a> (US)

%H Wiktionary, <a href="https://en.wiktionary.org/wiki/one_hundred_and_one">one hundred and one</a> (UK)

%F a(A180301(n)) = A180301(n+1).

%e a(1) = 2 since "two" is after "one".

%e a(2) = 200 since "two hundred" is after "two".

%e a(2202) = 2000000000000 since "two trillion" is after "two thousand two hundred two".

%o (Python)

%o from num2words import num2words

%o def n2w(n): return num2words(n).replace(" and", "").replace(chr(44), "")

%o def a(n):

%o target, t = n2w(n), n+1

%o while n2w(t) <= target: t += 1

%o return t

%o print([a(n) for n in range(1, 64)]) # _Michael S. Branicky_, Jul 23 2022

%Y Cf. A180301.

%K nonn,word

%O 1,1

%A _Michael S. Branicky_, Jul 23 2022

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified July 23 03:10 EDT 2024. Contains 374544 sequences. (Running on oeis4.)