static InfiniteItIt powersOfNAsHex(int n) { ret new InfiniteItIt { BigInt i = bigint(1); public S next() { ret (i = mul(i, n)).toString(16); } }; }