login
A044745
Numbers n such that string 3,2 occurs in the base 10 representation of n but not of n+1.
0
32, 132, 232, 329, 332, 432, 532, 632, 732, 832, 932, 1032, 1132, 1232, 1329, 1332, 1432, 1532, 1632, 1732, 1832, 1932, 2032, 2132, 2232, 2329, 2332, 2432, 2532, 2632, 2732, 2832, 2932, 3032, 3132, 3299, 3329, 3332, 3432
OFFSET
1,1
MATHEMATICA
SequencePosition[Table[If[SequenceCount[IntegerDigits[n], {3, 2}]>0, 1, 0], {n, 3500}], {1, 0}][[All, 1]] (* Harvey P. Dale, Aug 13 2021 *)
CROSSREFS
Sequence in context: A059210 A060670 A044364 * A297641 A304380 A297887
KEYWORD
nonn,base
STATUS
approved