OFFSET
1,1
COMMENTS
LINKS
Ray Chandler, Table of n, a(n) for n = 1..60
Edwin E. Freed, Binary Magic Numbers, Dr. Dobb's Journal, Vol. 78 (April 1983), pp. 24-37.
OEIS Wiki, Cyclic numbers
Eric Weisstein's World of Mathematics, Cyclic number
Wikipedia, Cyclic number
EXAMPLE
142857 is in the sequence because it has 6 digits and the first 6 multiples of 142857 are 142857, 285714, 428571, 571428, 714285, and 857142, all cyclic permutations of the number. Also the first term of A001913 is 7, and 1/7 = 0.142857142857... .
588235294117647 is the next number because 0588235294117647 has 16 digits and the first 16 multiples are cyclic permutations of the number; the second term of A001913 is 17, and 1/17 = 0.05882352941176470588235294117647... .
MATHEMATICA
Map[(10^(# - 1) - 1)/# &, Select[Prime@ Range@ 17, MultiplicativeOrder[10, #] == # - 1 &]] (* Michael De Vlieger, Apr 03 2017 *)
CROSSREFS
KEYWORD
base,nonn,changed
AUTHOR
Ralph Kerchner (daxkerchner(AT)hotmail.com), Aug 28 2010
STATUS
approved