OFFSET
1,1
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..192
EXAMPLE
39 is in the sequence because in the decimal expansion of 1/39 = 0.02564102564102564... there are no 3's and 9's.
167 is not in the sequence because the decimal expansion of 1/167 = 0.005988023952095808383233532934131736... includes 1, 6 and 7.
MATHEMATICA
q[n_] := Module[{r = RealDigits[1/n], d = IntegerDigits[n]}, If[r[[2]] < 0, ! MemberQ[d, 0], True] && !IntersectingQ[d, Flatten@r[[1]]]]; Select[Range[1000], q] (* Amiram Eldar, Mar 24 2021 *)
CROSSREFS
KEYWORD
base,nonn
AUTHOR
Luc Stevens (lms022(AT)yahoo.com), Apr 19 2006
EXTENSIONS
Corrected by T. D. Noe, Nov 01 2006
Offset corrected and a wrong term (167) removed by Amiram Eldar, Mar 24 2021
STATUS
approved