login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A044722
Numbers n such that string 0,9 occurs in the base 10 representation of n but not of n+1.
0
109, 209, 309, 409, 509, 609, 709, 809, 909, 1009, 1099, 1109, 1209, 1309, 1409, 1509, 1609, 1709, 1809, 1909, 2009, 2099, 2109, 2209, 2309, 2409, 2509, 2609, 2709, 2809, 2909, 3009, 3099, 3109, 3209, 3309, 3409, 3509
OFFSET
1,1
MATHEMATICA
Select[Range[3600], MemberQ[Partition[IntegerDigits[#], 2, 1], {0, 9}] && !MemberQ[Partition[IntegerDigits[#+1], 2, 1], {0, 9}]&] (* Harvey P. Dale, Feb 22 2012 *)
CROSSREFS
Sequence in context: A061879 A171121 A044341 * A142697 A142777 A142797
KEYWORD
nonn,base
STATUS
approved