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!)
A067497 Smallest power of 2 with n+1 digits (n>=0). Also numbers k such that 1 is the first digit of 2^k. 14
0, 4, 7, 10, 14, 17, 20, 24, 27, 30, 34, 37, 40, 44, 47, 50, 54, 57, 60, 64, 67, 70, 74, 77, 80, 84, 87, 90, 94, 97, 100, 103, 107, 110, 113, 117, 120, 123, 127, 130, 133, 137, 140, 143, 147, 150, 153, 157, 160, 163, 167, 170, 173, 177, 180, 183, 187, 190, 193, 196 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
The asymptotic density of this sequence is log_10(2) = 0.301029... (A007524). - Amiram Eldar, Jan 27 2021
LINKS
FORMULA
a(n) = ceiling(n*log_2(10)). - Vladeta Jovovic, Jun 20 2002
MATHEMATICA
a[n_] := Block[{k = 0}, While[ Floor[Log[10, 2^k] + 1] < n, k++ ]; k]; Table[ a[n], {n, 1, 61}]
Table[Ceiling[n*Log[2, 10]], {n, 0, 59}] (* Jean-François Alcover, Jan 29 2014, after Vladeta Jovovic *)
PROG
(PARI) for(n=0, 500, if(floor(2^n/10^(floor(n*log(2)/log(10))))==1, print1(n, ", ")))
(PARI) a(n) = ceil(n*log(10)/log(2)); \\ Michel Marcus, May 13 2017
(GAP) Filtered([0..200], n->ListOfDigits(2^n)[1]=1); # Muniru A Asiru, Oct 22 2018
(Python)
def A067497(n): return (10**n-1).bit_length() # Chai Wah Wu, Apr 02 2023
CROSSREFS
Sequence in context: A191402 A080600 A198266 * A123384 A138813 A310689
KEYWORD
base,nonn,easy
AUTHOR
Benoit Cloitre, Feb 22 2002
EXTENSIONS
Additional comments from Lekraj Beedassy, Jun 20 2002 and from Rick Shephard, Jun 27 2002
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 April 19 05:19 EDT 2024. Contains 371782 sequences. (Running on oeis4.)