OFFSET
1,3
EXAMPLE
10 is not in the list because the median of its digits is not integer.
13 is not in the list because the median of its digits is 2 which is not a digit of 13.
113 is in the list because the median of its digits is 1 which is a digit of 113.
MATHEMATICA
Select[Range[0, 140], MemberQ[digits=IntegerDigits[#], Median[digits]] &]
CROSSREFS
KEYWORD
nonn,base,easy,new
AUTHOR
Stefano Spezia, Nov 30 2024
STATUS
approved