OFFSET
1,1
COMMENTS
All multiples of 3 are in this sequence. Multiples of 11 are in this sequence if they have an even number of digits or if they are also multiples of 3.
LINKS
Reinhard Zumkeller, Table of n, a(n) for n = 1..10000
EXAMPLE
22 is in the sequence because its 9's complement is 77 and gcd(22, 77) = 11 > 1.
MATHEMATICA
(* First run the program for A061601 to define nineComplement *) Select[Range[200], GCD[#, nineComplement[#]] > 1 &]
PROG
(Magma) [n: n in [3..159] | Gcd(10^#Intseq(n)-1, n) gt 1]; // Bruno Berselli, Dec 02 2011
(Haskell)
a201462 n = a201462_list !! (n-1)
a201462_list = [x | x <- [1..], gcd x (a061601 x) > 1]
-- Reinhard Zumkeller, Dec 03 2011
CROSSREFS
KEYWORD
nonn,easy,base
AUTHOR
Alonso del Arte, Dec 01 2011
STATUS
approved