OFFSET
1,1
COMMENTS
See the comments in A250041 which all apply, except for the setting of the base, b=8. In particular, they define the property RTNC(b).
LINKS
Stanislav Sykora, Table of n, a(n) for n = 1..10000
Stanislav Sykora, PARI/GP scripts for genetic threads, with code and comments
Wikipedia, Coprime integers
PROG
(PARI) See the link
(PARI) is_rtnc(n, b=8) = {while (((m=gcd(n\b, n)) != 1), if (m == 0, return (1)); n = n\b; ); return (0); } \\ Michel Marcus, Jan 22 2015
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Stanislav Sykora, Jan 15 2015
STATUS
approved