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!)
A210666 Numbers with at least three digits in which all digits but one are the same. 6

%I #50 May 22 2022 14:12:20

%S 100,101,110,112,113,114,115,116,117,118,119,121,122,131,133,141,144,

%T 151,155,161,166,171,177,181,188,191,199,200,202,211,212,220,221,223,

%U 224,225,226,227,228,229,232,233,242,244,252,255,262,266,272,277,282,288

%N Numbers with at least three digits in which all digits but one are the same.

%C Each k-digit term has k-1 appearances of a digit, d1, and 1 appearance of a different digit, d2, and k-1 >= 2 so that d1 is repeated. Specifically, the 2-digit terms of A010784 are not terms here. - _Michael S. Branicky_, May 22 2022

%C a(n) = A031955(n+81) for n <= 244.

%C For n <= 243, i.e., the 3-digit terms, a(n) = A218556(n+10). - _M. F. Hasler_, Nov 02 2012

%H Arkadiusz Wesolowski, <a href="/A210666/b210666.txt">Table of n, a(n) for n = 1..10000</a>

%t lst = {}; Do[If[SortBy[Tally[IntegerDigits[n]], Last][[-1, -1]] == IntegerLength[n] - 1, AppendTo[lst, n]], {n, 100, 288}]; lst

%t lst = {}; Do[r = Table[a, {n}]; Do[c = FromDigits@Permutations[Join[{d}, r]]; If[d == 0, c = Rest[c]]; AppendTo[lst, c], {d, 0, 9}], {a, 0, 9}, {n, 2, 2}]; Drop[Union@Flatten[lst], 19]

%t nrepQ[n_] := Module[{dg = Select[DigitCount[n], # > 0 &]}, Length[dg] == 2 && Min[dg] == 1 && Max[dg] > 1]; Select[Range[300], nrepQ] (* _Harvey P. Dale_, Nov 20 2012 *)

%o (Python)

%o from itertools import count, islice

%o def agen(): # generator of terms

%o for d in count(3):

%o dterms = set()

%o for most in "123456789":

%o dterms.add(int(most + "0"*(d-1)))

%o for diff in "0123456789":

%o if most == diff: continue

%o cands = (most*i + diff + most*(d-1-i) for i in range(d))

%o dterms.update(int(t) for t in cands if t[0] != "0")

%o yield from sorted(dterms)

%o print(list(islice(agen(), 52))) # _Michael S. Branicky_, May 17 2022

%Y Subsequence of A031955. Supersequence of A164937.

%Y Cf. A010784, A031955, A218556.

%K base,easy,nonn,less

%O 1,1

%A _Arkadiusz Wesolowski_, May 08 2012

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 16:52 EDT 2024. Contains 371794 sequences. (Running on oeis4.)