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!)
A296866 Numbers whose base-4 digits d(m), d(m-1), ..., d(0) have #(pits) < #(peaks); see Comments. 4
24, 25, 28, 29, 30, 44, 45, 46, 88, 89, 92, 93, 94, 96, 100, 101, 108, 109, 110, 112, 116, 117, 120, 121, 122, 172, 173, 174, 176, 180, 181, 184, 185, 186, 260, 264, 265, 268, 269, 270, 344, 345, 348, 349, 350, 352, 356, 357, 364, 365, 366, 368, 372, 373 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
A pit is an index i such that d(i-1) > d(i) < d(i+1); a peak is an index i such that d(i-1) < d(i) > d(i+1). The sequences A296864-A296866 partition the natural numbers. See the guides at A296882 and A296712.
LINKS
EXAMPLE
The base-4 digits of 373 are 1,1,3,1,1; here #(pits) = 0 and #(peaks) = 2, so 373 is in the sequence.
MATHEMATICA
z = 200; b = 4;
d[n_] := Differences[Sign[Differences[IntegerDigits[n, b]]]];
Select[Range [z], Count[d[#], -2] == Count[d[#], 2] &] (* A296864 *)
Select[Range [z], Count[d[#], -2] < Count[d[#], 2] &] (* A296865 *)
Select[Range [z], Count[d[#], -2] > Count[d[#], 2] &] (* A296866 *)
CROSSREFS
Sequence in context: A066024 A123608 A141587 * A241890 A027729 A008856
KEYWORD
nonn,base,easy
AUTHOR
Clark Kimberling, Jan 09 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.)