This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A250049 #7 Feb 06 2015 05:52:46 %S A250049 2,3,4,5,12,14,16,18,21,24,26,28,30,35,72,74,75,76,84,86,88,96,98,100, %T A250049 108,110,111,112,126,129,144,146,147,148,156,158,160,168,170,172,180, %U A250049 182,183,184,185,210,215,432,434,435,436,444,446,448,450,453,455 %N A250049 Numbers n such that m = floor(n/6) is not coprime to n and, if nonzero, m is also a term of the sequence. %C A250049 See the comments in A250041 which all apply, except for the setting of the base, b=6. In particular, they define the property RTNC(b). %H A250049 Stanislav Sykora, <a href="/A250049/b250049.txt">Table of n, a(n) for n = 1..10000</a> %H A250049 Stanislav Sykora, <a href="https://oeis.org/wiki/File:GeneticThreads.txt">PARI/GP scripts for genetic threads</a>, with code and comments. %H A250049 Wikipedia, <a href="http://en.wikipedia.org/wiki/Coprime_integers">Coprime integers</a> %o A250049 (PARI) \\ See A250041 for b=6 %o A250049 (PARI) is_rtnc(n, b=6) = {while (((m=gcd(n\b, n)) != 1), if (m == 0, return (1)); n = n\b;); return (0); } \\ _Michel Marcus_, Jan 31 2015 %Y A250049 Cf. A250041 (b=10), A250046. %Y A250049 Other lists of right-truncatable numbers with the property RTNC(b): %Y A250049 A005823 (b=3), A250037 (b=4), A250039 (b=16), A250043 (b=9), A250045 (b=8), A250047 (b=7), A250051 (b=5). %K A250049 nonn,base %O A250049 1,1 %A A250049 _Stanislav Sykora_, Jan 31 2015