A002810 Smallest number containing n syllables in UK English.
1, 7, 11, 27, 77, 107, 111, 127, 177, 777, 1127, 1177, 1777, 7777, 11777, 27777, 77777, 107777, 111777, 127777, 177777, 777777, 1127777, 1177777, 1777777, 7777777, 11777777, 27777777, 77777777, 107777777, 111777777, 127777777, 177777777, 777777777
Offset: 1
Examples
"One" has one syllable, therefore a(1)=1; a(2)=7 since "seven" is the least number to have two syllables; a(3)=11 because eleven is the first to have 3 syllables.
References
- Rodolfo Kurchan, Mesmerizing Math Puzzles, by Sterling Publications, 2000, p. 18.
- R. C. Penner, Discrete Mathematics, Proofs Techniques and Mathematical Structures, World Scientific, 1999, Reprinted 2001, p. 97.
- N. J. A. Sloane, A Handbook of Integer Sequences, Academic Press, 1973 (includes this sequence).
- N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
- David Wells, The Penguin Dictionary of Curious and Interesting Numbers, Penguin Books, Revised edition, 1997, p. 171.
Links
- Eric Weisstein's World of Mathematics, Berry Paradox
- Wiktionary, one hundred one (US)
- Wiktionary, one hundred and one (UK)
- Robert G. Wilson v, English names for the numbers from 0 to 11159 without spaces or hyphens.
- Index to OEIS: sequences related to English words for n
Crossrefs
Cf. A045736.
Programs
-
PARI
A002810(n)={if(n>12, A002810(n-4*n=(n-1)\12*3)*10^n+10^n\9*7, [1, 7, 11, 27, 77, 107, 111, 127, 177, 777, 1127, 1177][n])} \\ Valid up to a(58) (or a(84) when long scale is used). - M. F. Hasler, Nov 03 2013
Formula
a(n+12) = a(n)*1000+777, as long as a(n+12) is less than one quadrillion (whatever scale is used). - M. F. Hasler, Nov 03 2013
Extensions
Edited and extended by M. F. Hasler, Nov 03 2013
Comments