login
A383500
Positive integers that contain the digit 9, or an odd digit d immediately preceded by a digit <= d.
7
9, 11, 13, 15, 17, 19, 23, 25, 27, 29, 33, 35, 37, 39, 45, 47, 49, 55, 57, 59, 67, 69, 77, 79, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 101, 103, 105, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 123, 125, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137
OFFSET
1,1
COMMENTS
Conjecture: these are the numbers missing from A382935.
Theorem: This sequence is the complement of A382935. - Quinn Savitt, May 08 2025
MATHEMATICA
A383500Q[k_] := MemberQ[#, 9] || MemberQ[Partition[#, 2, 1], {i_, j_?OddQ} /; i <= j] & [IntegerDigits[k]];
Select[Range[200], A383500Q]
PROG
(Python)
def ok(n):
s = str(n)
return "9" in s or any(d in "13579" and s[i-1]<=d for i, d in enumerate(s) if i > 0)
print([k for k in range(134) if ok(k)]) # Michael S. Branicky, Apr 29 2025
CROSSREFS
KEYWORD
nonn,base,easy
AUTHOR
Paolo Xausa, Apr 29 2025
STATUS
approved