A297278 Numbers whose base-12 digits have greater up-variation than down-variation; see Comments.
14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 27, 28, 29, 30, 31, 32, 33, 34, 35, 40, 41, 42, 43, 44, 45, 46, 47, 53, 54, 55, 56, 57, 58, 59, 66, 67, 68, 69, 70, 71, 79, 80, 81, 82, 83, 92, 93, 94, 95, 105, 106, 107, 118, 119, 131, 146, 147, 148, 149, 150, 151
Offset: 1
Examples
151 in base-12: 1,0,7, having DV = 1, UV = 7, so that 151 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 = 12; 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] (* A297276 *) Take[Flatten[Position[w, 0]], 120] (* A297277 *) Take[Flatten[Position[w, 1]], 120] (* A297278 *)
Comments