cp's OEIS Frontend

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.

A095785 Values of n for which A095777(n) is 16 (those terms which are expressible in decimal digits for bases 2 through 17, but not for base 18).

This page as a plain text file.
%I A095785 #3 Feb 09 2013 14:15:53
%S A095785 17,105,289,294,902,903,904,905,918,919,5491,5492,5493,5508,5525,
%T A095785 16905,16920,16921,270354,271665,271700,271701,275205,275256,3342391,
%U A095785 3342392,3342405,3342408,3342409,3342421,3342422,3342423,3342424,3342425,3342438,3342439
%N A095785 Values of n for which A095777(n) is 16 (those terms which are expressible in decimal digits for bases 2 through 17, but not for base 18).
%e A095785 a(5)=902 because 902 when expressed in successive bases starting at 2 will produce its first non-decimal digit at base 18. Like so: 1110000110, 1020102, 32012, 12102, 4102, 2426, 1606, 1212, 902, 750, 632, 545, 486, 402, 386, 321. In base 18, 902 is 2E2.
%p A095785 S := []; for n from 1 to 15000 do; if 1>0 then; ct := 0; ok := true; b := 2; if (n>9) then; while ok=true do; L := convert(n, base, b); for e in L while ok=true do; if (e > 9) then ok:=false; fi; od; if ok=true then; ct := ct + 1; b := b + 1; fi; od; fi; if ct=16 then S := [op(S), n]; fi; fi; od; S;
%t A095785 b18Q[n_]:=Module[{idn=Table[IntegerDigits[n,b],{b,2,18}]},Max[Flatten[Most[ idn]]]<10 && Max[Last[idn]]>9]; Select[Range[50000],b18Q] (* _Harvey P. Dale_, Feb 09 2013 *)
%Y A095785 Cf. A095777.
%K A095785 base,nonn
%O A095785 1,1
%A A095785 Chuck Seggelin (seqfan(AT)plastereddragon.com), Jun 05 2004
%E A095785 More terms from _Harvey P. Dale_, Feb 09 2013