A073761 Primitive numbers whose decimal expansion of 1/n is equidistributed in base 10.
61, 131, 181, 461, 491, 541, 571, 701, 811, 821, 941, 971, 1021, 1051, 1091, 1171, 1181, 1291, 1301, 1349, 1381, 1531, 1571, 1621, 1741, 1811, 1829, 1861, 2141, 2221, 2251, 2341, 2371, 2411, 2621, 2731, 2741, 2851, 2861, 2971, 3011, 3221, 3251, 3301
Offset: 1
Examples
61 is a term because 1/61 = .016393... (period 60 digits, 6 of each 0,1,..9).
References
- David Wells, The Penguin Dictionary of Curious and Interesting Numbers, revised edition, London, England, 1997, entry 61, page 110.
Links
- Jianing Song, Table of n, a(n) for n = 1..808 (all terms <= 100000)
Crossrefs
Cf. A074709.
Programs
-
Mathematica
a = {}; Do[d = RealDigits[1/n][[1, 1]]; If[ !IntegerQ[d] && Count[d, 0] == Count[d, 1] == Count[d, 2] == Count[d, 3] == Count[d, 4] == Count[d, 5] == Count[d, 6] == Count[d, 7] == Count[d, 8] == Count[d, 9], If[ Select[n/a, IntegerQ] == {}, a = Append[a, n]]], {n, 11, 3330}]; a
Extensions
Edited by Robert G. Wilson v, Sep 06 2002
Comments