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

 

Logo

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 60th year, we have over 367,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

Other ways to Give
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A296759 Numbers whose base-16 digits d(m), d(m-1), ..., d(0) have #(rises) = #(falls); see Comments. 4

%I #9 Jan 27 2023 19:27:13

%S 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,17,34,51,68,85,102,119,136,153,

%T 170,187,204,221,238,255,257,258,259,260,261,262,263,264,265,266,267,

%U 268,269,270,271,273,288,289,304,305,306,320,321,322,323,336,337

%N Numbers whose base-16 digits d(m), d(m-1), ..., d(0) have #(rises) = #(falls); see Comments.

%C 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 A296759-A296761 partition the natural numbers. See the guide at A296712.

%H Clark Kimberling, <a href="/A296759/b296759.txt">Table of n, a(n) for n = 1..10000</a>

%e The base-16 digits of 2^20 + 1 are 1, 0, 0, 0, 0, 1; here #(rises) = 1 and #(falls) = 1, so 2^20 + 1 is in the sequence.

%t z = 200; b = 16; d[n_] := Sign[Differences[IntegerDigits[n, b]]];

%t Select[Range [z], Count[d[#], -1] == Count[d[#], 1] &] (* A296759 *)

%t Select[Range [z], Count[d[#], -1] < Count[d[#], 1] &] (* A296760 *)

%t Select[Range [z], Count[d[#], -1] > Count[d[#], 1] &] (* A296761 *)

%t Select[Range[400],Total[Sign[Differences[IntegerDigits[#,16]]]]==0&] (* _Harvey P. Dale_, Aug 11 2021 *)

%Y Cf. A296760, A296761, A296712.

%K nonn,base,easy

%O 1,2

%A _Clark Kimberling_, Jan 08 2018

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 December 3 18:35 EST 2023. Contains 367540 sequences. (Running on oeis4.)