login
A044422
Numbers n such that string 9,0 occurs in the base 10 representation of n but not of n-1.
0
90, 190, 290, 390, 490, 590, 690, 790, 890, 900, 990, 1090, 1190, 1290, 1390, 1490, 1590, 1690, 1790, 1890, 1900, 1990, 2090, 2190, 2290, 2390, 2490, 2590, 2690, 2790, 2890, 2900, 2990, 3090, 3190, 3290, 3390, 3490, 3590
OFFSET
1,1
MATHEMATICA
SequencePosition[Table[If[SequenceCount[IntegerDigits[n], {9, 0}]>0, 1, 0], {n, 4000}], {0, 1}][[All, 2]] (* Requires Mathematica version 10 or later *) (* Harvey P. Dale, Dec 02 2018 *)
CROSSREFS
Sequence in context: A179697 A211442 A282473 * A044803 A235081 A074213
KEYWORD
nonn,base
STATUS
approved