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 A308493 #32 Aug 27 2019 03:03:42 %S A308493 0,1,2,3,4,5,6,7,8,9,10,13,20,21,23,31,41,42,43,46,51,53,61,62,63,71, %T A308493 73,81,82,83,84,86,91,93,100,101,102,110,111,112,113,114,115,116,117, %U A308493 118,119,121,122,123,131,133,141,144,151,155,158,161,166,171,177,181 %N A308493 Numbers k such that k in base 10 contains the same digits as k in some other base. %C A308493 Supersequence of A034294 and A307498. %C A308493 This sequence is infinite because 2*10^k is a term for any k >= 0. %C A308493 Also 10^k is a term when k >= 0 and so too 10^k*(10^m - 1)/9 for any k > 0 and m >= 0. - _Bruno Berselli_, Aug 26 2019 %e A308493 k = 113 is in the sequence because the set of digits of k {1, 3} equals the set of digits of (k in base 110) = 13. %o A308493 (PARI) isok(k) = {my(j=Set(digits(k))); for(b=2, k+1, if((b!=10) && (Set(digits(k, b)) == j), return(1))); return(0);} \\ _Michel Marcus_, Aug 05 2019 %Y A308493 Cf. A034294, A037415, A037422, A037428, A037433, A037437, A037440, A037442, A037443, A249899, A307498. %K A308493 nonn,base %O A308493 1,3 %A A308493 _Jinyuan Wang_, Aug 05 2019