login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A119905
Numbers k such that gcd(k, R_k) = 1, where R_k is the repunit (10^k -1)/9 = A002275(k).
2
1, 2, 4, 5, 7, 8, 10, 11, 13, 14, 16, 17, 19, 20, 23, 25, 26, 28, 29, 31, 32, 34, 35, 37, 38, 40, 41, 43, 46, 47, 49, 50, 52, 53, 55, 56, 58, 59, 61, 62, 64, 65, 67, 68, 70, 71, 73, 74, 76, 77, 79, 80, 82, 83, 85, 86, 89, 91, 92, 94, 95, 97, 98, 100, 101, 103, 104, 106, 107
OFFSET
1,2
MATHEMATICA
Select[Range[1000], GCD[#, (10^# - 1)/9] == 1&] (* Jean-François Alcover, May 19 2016 *)
PROG
(PARI) upto(N) = [n|n<-[1..N], 1==gcd(n, (10^n-1)/9)]; \\ Ruud H.G. van Tol, May 09 2024
CROSSREFS
Sequence in context: A248607 A191266 A003253 * A213219 A161750 A249400
KEYWORD
nice,nonn
AUTHOR
Lekraj Beedassy, Aug 03 2006
STATUS
approved