login

Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.

A240913
Numbers m such that GCD of digits of m is 1 and no digit of m is 1.
2
23, 25, 27, 29, 32, 34, 35, 37, 38, 43, 45, 47, 49, 52, 53, 54, 56, 57, 58, 59, 65, 67, 72, 73, 74, 75, 76, 78, 79, 83, 85, 87, 89, 92, 94, 95, 97, 98, 203, 205, 207, 209, 223, 225, 227, 229, 230, 232, 233, 234, 235, 236, 237, 238, 239, 243, 245, 247, 249
OFFSET
1,1
COMMENTS
A052423(a(n)) = 1.
LINKS
MATHEMATICA
gcdQ[n_]:=Module[{idn=IntegerDigits[n]}, !MemberQ[idn, 1]&&GCD@@idn==1]; Select[ Range[300], gcdQ] (* Harvey P. Dale, Dec 17 2014 *)
PROG
(Haskell)
a240913 n = a240913_list !! (n-1)
a240913_list = filter (not . elem '1' . show) a069715_list
(PARI) is(n)=my(d=Set(digits(n))); setsearch(d, 1)==0 && gcd(d)==1 \\ Charles R Greathouse IV, Nov 01 2014
CROSSREFS
Subsequence of A069715.
Sequence in context: A156964 A147624 A263315 * A095251 A242942 A054865
KEYWORD
nonn,base
AUTHOR
Reinhard Zumkeller, Apr 14 2014
STATUS
approved