OFFSET
1,2
COMMENTS
Inspired by A298232.
FORMULA
Complement of A298980.
EXAMPLE
2 is in the sequence since there is no k such that k/2 would result in a decimal number which begins with 2, i.e., 0.2000. Instead, the decimal number for odd k's begin with 0.5.
MATHEMATICA
fQ = Compile[{{n, _Integer}}, Block[{k = 1, il = IntegerLength@ n}, While[m = 10^il*k/n; While[ IntegerLength@ Floor@ m < il, m *= 10]; k < n && Floor[m] != n, k++]; k == n]]; Select[Range@140, fQ]
CROSSREFS
KEYWORD
easy,nonn,base
AUTHOR
STATUS
approved