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!)
A089590 Uban numbers (the letter u is banned from the English name of the number). 9

%I #21 Aug 19 2022 13:52:38

%S 0,1,2,3,5,6,7,8,9,10,11,12,13,15,16,17,18,19,20,21,22,23,25,26,27,28,

%T 29,30,31,32,33,35,36,37,38,39,40,41,42,43,45,46,47,48,49,50,51,52,53,

%U 55,56,57,58,59,60,61,62,63,65,66,67,68,69,70,71,72,73,75,76,77,78,79,80,81,82,83,85,86,87,88,89,90,91,92,93,95,96,97,98,99

%N Uban numbers (the letter u is banned from the English name of the number).

%C The sequence of uban numbers first differs from A052406 (the numbers not containing the digit 4) at the term 40 (forty), which is a uban number but is not 4-less.

%H Daniel Arribas and Reinhard Zumkeller, <a href="/A089590/b089590.txt">Table of n, a(n) for n = 1..1000</a> (first 89 terms from Daniel Arribas)

%H Roel and Bas van Dijk, <a href="http://hackage.haskell.org/package/numerals">Numerals package</a>, Hackage (Haskell packages)

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

%H <a href="/index/Lc#letters">Index entries for sequences related to number of letters in n</a>

%o (Haskell)

%o import Data.Maybe (fromJust)

%o import Data.Text (Text); import qualified Data.Text as T (all)

%o import Text.Numeral.Grammar.Reified (defaultInflection)

%o import qualified Text.Numeral.Language.EN as EN -- see link

%o a089590 n = a089590_list !! (n-1)

%o a089590_list = filter (T.all (/= 'u') . numeral) [0..] where

%o numeral :: Integer -> Text

%o numeral = fromJust . EN.gb_cardinal defaultInflection

%o -- _Reinhard Zumkeller_, Jan 23 2015

%o (Python)

%o from num2words import num2words

%o from itertools import islice, product

%o def ok(n): return "u" not in num2words(n)

%o def agen(): # generator of terms < 10**304

%o base, pows = [k for k in range(1, 1000) if ok(k)], [1]

%o yield from ([0] if ok(0) else []) + base

%o for e in range(3, 304, 3):

%o if "u" not in num2words(10**e)[4:]:

%o pows = [10**e] + pows

%o for t in product([0] + base, repeat=len(pows)):

%o if t[0] == 0: continue

%o yield sum(t[i]*pows[i] for i in range(len(t)))

%o print(list(islice(agen(), 100))) # _Michael S. Branicky_, Aug 19 2022

%Y Cf. A052406.

%Y Cf. A006933 (ban e), A089589 (ban i), A008521 (ban o), A008523 (ban t).

%K nonn,easy,word

%O 1,3

%A _Eric W. Weisstein_, Nov 09 2003

%E a(1) = 0 prepended by _Reinhard Zumkeller_, Jan 23 2015

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 April 25 05:18 EDT 2024. Contains 371964 sequences. (Running on oeis4.)