OFFSET
1,1
COMMENTS
Definition of 'being coprime' and special-case conventions are as in Wikipedia. In particular, when m<10 then floor(m/10)=0, and zero is coprime only to 1. The complementary sequence is A248499.
LINKS
Stanislav Sykora, Table of n, a(n) for n = 1..20000
Wikipedia, Coprime integers
FORMULA
gcd(a(n),floor(a(n)/10)) > 1.
EXAMPLE
2 is a member because gcd(2,0)=2 > 1.
100 is also a member because gcd(100,10)=10 > 1.
125 is not a member because 125 and 12 are coprime, i.e., gcd(125,12)=1.
PROG
(PARI) a=vector(20000);
i=n=0; while(i++, if(gcd(i, i\10)!=1, a[n++]=i; if(n==#a, break))); a
CROSSREFS
KEYWORD
nonn,base,easy
AUTHOR
Stanislav Sykora, Oct 07 2014
STATUS
approved