login
A044755
Numbers n such that string 4,2 occurs in the base 10 representation of n but not of n+1.
0
42, 142, 242, 342, 429, 442, 542, 642, 742, 842, 942, 1042, 1142, 1242, 1342, 1429, 1442, 1542, 1642, 1742, 1842, 1942, 2042, 2142, 2242, 2342, 2429, 2442, 2542, 2642, 2742, 2842, 2942, 3042, 3142, 3242, 3342, 3429, 3442
OFFSET
1,1
MATHEMATICA
SequencePosition[Table[If[SequenceCount[IntegerDigits[n], {4, 2}]>0, 1, 0], {n, 3500}], {1, 0}][[All, 1]] (* Requires Mathematica version 10 or later *) (* Harvey P. Dale, May 11 2021 *)
CROSSREFS
Sequence in context: A346856 A330939 A044374 * A262424 A230932 A224954
KEYWORD
nonn,base
STATUS
approved