A297258 Numbers whose base-6 digits have greater down-variation than up-variation; see Comments.
6, 12, 13, 18, 19, 20, 24, 25, 26, 27, 30, 31, 32, 33, 34, 36, 42, 48, 54, 60, 66, 72, 73, 78, 79, 84, 85, 90, 91, 96, 97, 102, 103, 108, 109, 110, 114, 115, 116, 120, 121, 122, 126, 127, 128, 132, 133, 134, 138, 139, 140, 144, 145, 146, 147, 150, 151, 152
Offset: 1
Examples
152 in base-6: 4,1,2, having DV = 3, UV = 1, so that 152 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 = 6; 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] (* A297258 *) Take[Flatten[Position[w, 0]], 120] (* A297259 *) Take[Flatten[Position[w, 1]], 120] (* A297260 *)
Comments