The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A216411 Number of bases in which n begins with a "1". 1
1, 2, 3, 4, 4, 5, 5, 7, 7, 8, 8, 9, 9, 10, 11, 12, 11, 12, 12, 13, 13, 14, 14, 16, 16, 18, 18, 19, 19, 20, 19, 20, 20, 21, 22, 23, 23, 24, 24, 25, 25, 26, 26, 27, 27, 28, 28, 30, 29, 30, 30, 31, 30, 31, 31, 32, 32, 33, 33, 34, 34, 35, 37, 38, 38, 39, 39, 40, 40 (list; graph; refs; listen; history; text; internal format)
OFFSET
2,2
COMMENTS
1 begins with "1" in all bases, 2 begins with "1" only in binary ("10" in base 2), 3 begins with "1" in two bases ("11" in base 2, "10" in base 3), etc.
LINKS
Charles R Greathouse IV, Table of n, a(n) for n = 2..10000
FORMULA
a(n) = n/2 + O(sqrt(n)). - Charles R Greathouse IV, Sep 07 2012
MATHEMATICA
Table[Length[Select[Range[2, n], IntegerDigits[n, #][[1]] == 1 &]], {n, 2, 100}] (* T. D. Noe, Sep 07 2012 *)
PROG
(PARI) a(n)=my(t=1, s, i); for(i=1, log(n)\log(2)+1, s+=floor((n+.5)^(1/i))-floor(((n+.2)/2)^(1/i))); s \\ Charles R Greathouse IV, Sep 07 2012
CROSSREFS
Sequence in context: A337020 A351519 A046700 * A110532 A049987 A343397
KEYWORD
nonn,base
AUTHOR
Will Nicholes, Sep 07 2012
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 13 03:04 EDT 2024. Contains 372497 sequences. (Running on oeis4.)