OFFSET
1,1
COMMENTS
See the comments in A250041 which all apply, except for the setting of the base, b=5. 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 A250041 for b=5
(PARI) is_rtnc(n, b=5) = {while (((m=gcd(n\b, n)) != 1), if (m == 0, return (1)); n = n\b; ); return (0); } \\ Michel Marcus, Jan 31 2015
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Stanislav Sykora, Jan 31 2015
STATUS
approved