Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.
%I #12 Oct 06 2023 11:01:44
%S 3,15,24,33,42,51,60,133,134,135,136,137,138,139,143,153,163,173,183,
%T 193,233,234,235,236,237,238,239,243,253,263,273,283,293,303,304,305,
%U 306,307,308,309,313,314,315,316,317,318,319,323,324,325,326,327,328,329,330
%N Numbers whose median of the digits is equal to 3.
%e 15 is a term since the median of the digits 1 and 5 is (1+5)/2 = 3;
%e 133 is a term since the median of the digits 1, 3, and 3 is 3.
%t Select[Range[0,330], Median[IntegerDigits[#]]==3&]
%Y Cf. A292730 (median = 0), A292739 (median = 9), A366207 (median = 1), A366208 (median = 2), A366210 (median = 4), A366211 (median = 5), A366212 (median = 6), A366213 (median = 7), A366214 (median = 8).
%K nonn,base,easy
%O 1,1
%A _Stefano Spezia_, Oct 04 2023