login

Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.

A296750
Numbers whose base-13 digits d(m), d(m-1), ..., d(0) have #(rises) = #(falls); see Comments.
4
1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 28, 42, 56, 70, 84, 98, 112, 126, 140, 154, 168, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 183, 195, 196, 208, 209, 210, 221, 222, 223, 224, 234, 235, 236, 237, 238, 247, 248, 249, 250, 251, 252
OFFSET
1,2
COMMENTS
A rise is an index i such that d(i) < d(i+1); a fall is an index i such that d(i) > d(i+1). The sequences A296750-A296751 partition the natural numbers. See the guide at A296712.
LINKS
EXAMPLE
The base-13 digits of 998 are 5,11,10; here #(rises) = 1 and #(falls) = 1, so 998 is in the sequence.
MATHEMATICA
z = 200; b = 13; d[n_] := Sign[Differences[IntegerDigits[n, b]]];
Select[Range [z], Count[d[#], -1] == Count[d[#], 1] &] (* A296750 *)
Select[Range [z], Count[d[#], -1] < Count[d[#], 1] &] (* A296751 *)
Select[Range [z], Count[d[#], -1] > Count[d[#], 1] &] (* A296752 *)
CROSSREFS
KEYWORD
nonn,base,easy
AUTHOR
Clark Kimberling, Jan 08 2018
STATUS
approved