login
Numbers n such that string 3,2 occurs in the base 10 representation of n but not of n+1.
0

%I #7 Aug 13 2021 11:27:19

%S 32,132,232,329,332,432,532,632,732,832,932,1032,1132,1232,1329,1332,

%T 1432,1532,1632,1732,1832,1932,2032,2132,2232,2329,2332,2432,2532,

%U 2632,2732,2832,2932,3032,3132,3299,3329,3332,3432

%N Numbers n such that string 3,2 occurs in the base 10 representation of n but not of n+1.

%t SequencePosition[Table[If[SequenceCount[IntegerDigits[n],{3,2}]>0,1,0],{n,3500}],{1,0}][[All,1]] (* _Harvey P. Dale_, Aug 13 2021 *)

%K nonn,base

%O 1,1

%A _Clark Kimberling_