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!)
A107353 a(0)=0, a(n) = smallest integer not previously used which contains a digit from a(n-1). 35

%I #13 Jul 07 2015 11:05:28

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

%T 18,19,9,29,32,30,31,33,34,35,36,37,38,39,43,40,41,42,44,45,46,47,48,

%U 49,54,50,51,52,53,55,56,57,58,59,65,60,61,62,63,64,66,67,68,69,76,70

%N a(0)=0, a(n) = smallest integer not previously used which contains a digit from a(n-1).

%F For n > 28, and 2 <= j <= 10, a(j*10^k) = j*10^k + (j-1).

%e [10] is the smallest available integer having a "0". [1] is the smallest available integer having a "1" or a "0". [11] is the smallest integer having a 1, etc.

%e When restricted to {0..9999} this sequence is a permutation with the following cycle representation:

%e (1, 10, 23, 27, 19, 6, 20, 16, 5, 2)

%e (3, 11, 22, 7, 21, 17, 25, 8, 13, 4, 12, 24, 28, 9)

%e (18, 26)

%e (30, 32, 31)

%e (40, 43, 42, 41)

%e (50, 54, 53, 52, 51)

%e (60, 65, 64, 63, 62, 61)

%e (70, 76, 75, 74, 73, 72, 71)

%e (80, 87, 86, 85, 84, 83, 82, 81)

%e (100, 109, 108, 107, 106, 105, 104, 103, 102, 101)

%e (200, 201)

%e (300, 302, 301)

%e (400, 403, 402, 401)

%e (500, 504, 503, 502, 501)

%e (600, 605, 604, 603, 602, 601)

%e (700, 706, 705, 704, 703, 702, 701)

%e (800, 807, 806, 805, 804, 803, 802, 801)

%e (1000, 1009, 1008, 1007, 1006, 1005, 1004, 1003, 1002, 1001)

%e (2000, 2001)

%e (3000, 3002, 3001)

%e (4000, 4003, 4002, 4001)

%e (5000, 5004, 5003, 5002, 5001)

%e (6000, 6005, 6004, 6003, 6002, 6001)

%e (7000, 7006, 7005, 7004, 7003, 7002, 7001)

%e (8000, 8007, 8006, 8005, 8004, 8003, 8002, 8001)

%e - _Jason Kimberley_, Dec 22 2011

%t f[l_] := Block[{c = 0}, While[ MemberQ[l, c] || Intersection @@ IntegerDigits /@ {Last[l], c} == {}, c++ ]; Return[Append[l, c]] ]; Nest[f, {0}, 71] (* _Ray Chandler_, May 23 2005 *)

%K base,easy,nonn

%O 0,2

%A _Eric Angelini_, May 21 2005

%E Extended by _Ray Chandler_, May 23 2005

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 24 14:13 EDT 2024. Contains 371960 sequences. (Running on oeis4.)