login
A044409
Numbers n such that string 7,7 occurs in the base 10 representation of n but not of n-1.
0
77, 177, 277, 377, 477, 577, 677, 770, 877, 977, 1077, 1177, 1277, 1377, 1477, 1577, 1677, 1770, 1877, 1977, 2077, 2177, 2277, 2377, 2477, 2577, 2677, 2770, 2877, 2977, 3077, 3177, 3277, 3377, 3477, 3577, 3677, 3770, 3877
OFFSET
1,1
MATHEMATICA
SequencePosition[Table[If[SequenceCount[IntegerDigits[n], {7, 7}]>0, 1, 0], {n, 4000}], {0, 1}][[;; , 2]] (* Harvey P. Dale, Feb 17 2024 *)
CROSSREFS
Sequence in context: A046513 A199994 A043518 * A044790 A255095 A391916
KEYWORD
nonn,base
STATUS
approved