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 A257664 #15 Dec 23 2024 14:53:44 %S A257664 1,2,3,4,5,6,8,11,15,25,22,20,24,27,9,12,16,32,33,30,40,18,36,44,37, %T A257664 45,50,60,48,64,72,54,55,66,73,77,7,14,21,28,42,70,35,75,82,110,41, %U A257664 108,111,125,132,135,150,225,202,220,200,240,80,120,128,192,216,243,270 %N A257664 a(1)=1; a(n+1) is the smallest positive integer not yet used where the digits of the decimal expansion (disregarding all leading and trailing zeros) of a(n)/a(n+1) have no digit in common with either a(n) or a(n+1). %C A257664 Positive powers of ten (A011557) and pandigital numbers (A050289 and A171102) will never appear. %C A257664 Is the sequence finite? %H A257664 Hans Havermann, <a href="/A257664/b257664.txt">Table of n, a(n) for n = 1..2000</a> %H A257664 Eric Angelini, <a href="https://web.archive.org/web/*/http://list.seqfan.eu/oldermail/seqfan/2015-July/015032.html">Division with no visible digits</a>, SeqFan list, July 9, 2015. %e A257664 a(2) is 2 because it is the smallest number not yet used where the digits of a(1)/a(2) = .5, i.e., 5, is neither 1 nor 2. %e A257664 a(3) is 3 because it is the smallest number not yet used where the digits of a(2)/a(3) = .666.., i.e., 6, is neither 2 nor 3. %e A257664 a(4) is 4 because it is the smallest number not yet used where the digits of a(3)/a(4) = .75, i.e., 5 and 7, are neither 3 nor 4. %e A257664 a(72) is 63 because it is the smallest number not yet used where the digits of a(71)/a(72) = 90/63 = 1.42857142857.., i.e., 1, 2, 4, 5, 7, and 8, are not any of 0, 3, 6, or 9. %e A257664 a(376) is 15000 because it is the smallest number not yet used where the digits of a(375)/a(376) = 1025/15000 = .068333.., i.e., 3, 6, and 8 (the zero is leading) are not any of 0, 1, 2, or 5. %t A257664 t = 1; s = {1}; Do[c = 1; d = IntegerDigits[t]; While[Intersection[Flatten[RealDigits[t/c][[1]]], Join[IntegerDigits[c], d]] != {} || MemberQ[s, c], c++]; t = c; AppendTo[s, t], {400}]; s %K A257664 nonn,base %O A257664 1,2 %A A257664 _Eric Angelini_ and _Hans Havermann_, Jul 12 2015