login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

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).
0
17, 105, 289, 294, 902, 903, 904, 905, 918, 919, 5491, 5492, 5493, 5508, 5525, 16905, 16920, 16921, 270354, 271665, 271700, 271701, 275205, 275256, 3342391, 3342392, 3342405, 3342408, 3342409, 3342421, 3342422, 3342423, 3342424, 3342425, 3342438, 3342439
OFFSET
1,1
EXAMPLE
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.
MAPLE
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;
MATHEMATICA
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 *)
CROSSREFS
Cf. A095777.
Sequence in context: A160219 A242316 A329386 * A194131 A194475 A164745
KEYWORD
base,nonn
AUTHOR
Chuck Seggelin (seqfan(AT)plastereddragon.com), Jun 05 2004
EXTENSIONS
More terms from Harvey P. Dale, Feb 09 2013
STATUS
approved