The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A296899 Numbers whose base-15 digits d(m), d(m-1), ..., d(0) have #(pits) < #(peaks); see Comments. 4
255, 256, 270, 271, 272, 285, 286, 287, 288, 300, 301, 302, 303, 304, 315, 316, 317, 318, 319, 320, 330, 331, 332, 333, 334, 335, 336, 345, 346, 347, 348, 349, 350, 351, 352, 360, 361, 362, 363, 364, 365, 366, 367, 368, 375, 376, 377, 378, 379, 380, 381, 382 (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 A296897-A296899 partition the natural numbers. See the guides at A296712 and A296882.
LINKS
EXAMPLE
The base-15 digits of 57631 are 1,2,1,2,1; here #(pits) = 1 and #(peaks) = 2, so 57631 is in the sequence.
MATHEMATICA
z = 200; b = 15;
d[n_] := Differences[Sign[Differences[IntegerDigits[n, b]]]];
Select[Range [z], Count[d[#], -2] == Count[d[#], 2] &] (* A296897 *)
Select[Range [z], Count[d[#], -2] < Count[d[#], 2] &] (* A296898 *)
Select[Range [z], Count[d[#], -2] > Count[d[#], 2] &] (* A296899 *)
CROSSREFS
Sequence in context: A334353 A028526 A132828 * A257021 A359445 A306223
KEYWORD
nonn,base,easy
AUTHOR
Clark Kimberling, Jan 12 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 May 13 18:40 EDT 2024. Contains 372522 sequences. (Running on oeis4.)