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!)
A048992 Hannah Rollman's numbers: the numbers excluded from A048991. 13

%I #43 Jul 01 2021 07:11:01

%S 12,23,31,34,41,42,45,51,52,53,56,61,62,63,64,67,71,72,73,74,75,78,81,

%T 82,83,84,85,86,89,91,92,93,94,95,96,97,98,101,111,113,121,122,123,

%U 131,141,151,161,171,181,191,192,201,202,210,211,212,213,214,215,216,217

%N Hannah Rollman's numbers: the numbers excluded from A048991.

%C A105390(n) = number of terms <= n; for n < 740: A105390(n) < n/2. - _Reinhard Zumkeller_, Apr 04 2005

%C A116700 is a similar sequence. Note that 21 is missing from the current sequence, because we deleted 12 in computing A048991 and now 21 is no longer "earlier in the sequence". On the other hand 21 is present in A116700. - _N. J. A. Sloane_, Aug 05 2007

%C Otherwise said: Numbers which occur in the concatenation of all smaller numbers not listed in this sequence. - _M. F. Hasler_, Dec 29 2012

%C Number of terms < 10^n, n = 1, 2, ...: (0, 37, 589, 7046, ...), gives number of n-digit terms as first differences: (37, 552, 6457, ...). - _M. F. Hasler_, Oct 25 2019

%H T. D. Noe, <a href="/A048992/b048992.txt">Table of n, a(n) for n = 1..10000</a>

%H Nick Hobson, <a href="/A048992/a048992.py.txt">Python program for this sequence</a>

%t a[0] = 1; s = "1"; a[n_] := a[n] = For[k = a[n-1] + 1, True, k++, If[StringFreeQ[s, t = ToString[k]], s = s <> t, Return[k]]]; Table[a[n], {n, 1, 100}] (* _Jean-François Alcover_, Nov 25 2013 *)

%o (Python) # see Hobson link

%o (Haskell)

%o import Data.List (isInfixOf)

%o a048992 n = a048992_list !! (n-1)

%o a048992_list = g [1..] [] where

%o g (x:xs) ys | xs' `isInfixOf` ys = x : g xs ys

%o | otherwise = g xs (xs' ++ ys)

%o where xs' = reverse $ show x

%o -- _Reinhard Zumkeller_, Dec 05 2011

%o (PARI) D=[]; for(n=1, 999, for(i=0, #D-#d=digits(n), D[i+1..i+#d]!=d || print1(n",") || next(2)); D=concat(D, d)) \\ _M. F. Hasler_, Oct 25 2019

%Y Complement of A048991.

%Y Similar to A116700: "early birds" in the Barbier word A007376 or Champernowne sequence A033307.

%K nonn,nice,base,easy,look

%O 1,1

%A _Bernardo Recamán_

%E Edited by _Patrick De Geest_, Jun 02 2003

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 19 05:00 EDT 2024. Contains 371782 sequences. (Running on oeis4.)