A297254 Numbers whose base-4 digits have greater up-variation than down-variation; see Comments.
6, 7, 11, 18, 19, 22, 23, 26, 27, 30, 31, 35, 39, 43, 47, 66, 67, 70, 71, 74, 75, 78, 79, 82, 83, 86, 87, 90, 91, 94, 95, 98, 99, 102, 103, 106, 107, 110, 111, 114, 115, 118, 119, 122, 123, 126, 127, 131, 135, 139, 143, 147, 151, 155, 159, 163, 167, 171, 175
Offset: 1
Examples
175 in base-4: 2,2,3,3, having DV = 0, UV = 1, so that 175 is in the sequence.
Links
- Clark Kimberling, Table of n, a(n) for n = 1..10000
Programs
-
Mathematica
g[n_, b_] := Map[Total, GatherBy[Differences[IntegerDigits[n, b]], Sign]]; x[n_, b_] := Select[g[n, b], # < 0 &]; y[n_, b_] := Select[g[n, b], # > 0 &]; b = 4; z = 2000; p = Table[x[n, b], {n, 1, z}]; q = Table[y[n, b], {n, 1, z}]; w = Sign[Flatten[p /. {} -> {0}] + Flatten[q /. {} -> {0}]]; Take[Flatten[Position[w, -1]], 120] (* A297252 *) Take[Flatten[Position[w, 0]], 120] (* A297253 *) Take[Flatten[Position[w, 1]], 120] (* A297254 *)
Comments