login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
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 (list; graph; refs; listen; history; text; internal format)
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
Sequence in context: A044824 A048310 A043716 * A029958 A297280 A048324
KEYWORD
nonn,base,easy
AUTHOR
Clark Kimberling, Jan 08 2018
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)