A052196 Largest natural number less than 10^66 requiring exactly n letters in English.
10, 9, 60, 90, 70, 66, 96, 10000000000, 10000000000000, 10000000000000000000000000000000000, 10000000000000000000000000, 10000000000000000000000000000000000000, 10000000000000000000000000000000000000000000000000000000000000000, 9000000000000000000000000000000000000000000000000000000000000000
Offset: 3
Examples
The largest numbers (<10^66) using 10 to 15 letters: 10: 10*10^9 = ten billion 11: 10*10^12 = ten trillion 12: 10*10^33 = ten decillion 13: 10*10^24 = ten septillion 14: 10*10^36 = ten undecillion 15: 10*10^63 = ten vigintillion
Links
- Hans Havermann, Table of n, a(n) for n = 3..758
- Hans Havermann, Growth illustration for this sequence
- Hans Havermann, Define, divide, and conquer
- Pegg, E. Jr. and Weisstein, E. W. Mathematica's Google Aptitude: problem #20 MathWorld Headline news, Oct 13, 2004.
Programs
-
Mathematica
k=100;lst=StringLength/@StringReplace[IntegerName/@Range[k], {"-"-> ""," "-> ""}];max[n_]:=Last[Position[lst,n]]; max/@Range[3,9]//Flatten (* Ivan N. Ianakiev, Oct 07 2015 *)
Extensions
a(11) from Brian Galebach, Feb 06 2004
Edited and extended by Hans Havermann, Nov 08 2013
Comments