A353443 Integers m such that the decimal expansion of 1/m contains the digit 7.
7, 13, 14, 17, 19, 21, 23, 27, 28, 29, 34, 35, 36, 37, 38, 43, 44, 46, 47, 49, 51, 52, 53, 56, 57, 58, 59, 61, 63, 67, 68, 69, 70, 71, 76, 77, 79, 81, 83, 84, 85, 86, 87, 89, 92, 93, 94, 95, 97, 98, 102, 103, 107, 109, 112, 113, 114, 115, 116, 117, 118, 119, 121, 122, 126, 127
Offset: 1
Keywords
Examples
m = 7 is a term since 1/7 = 0.142857142857... m = 27 is a term since 1/27 = 0.037037037... (here, 7 is the largest digit).
Crossrefs
Programs
-
Mathematica
f[n_] := Union[ Flatten[ RealDigits[ 1/n][[1]] ]]; Select[ Range@ 150, MemberQ[f@#, 7] &]
Comments