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!)
A131535 Least power of 2 having exactly n consecutive 1's in its decimal representation. 10
1, 0, 40, 42, 313, 485, 1841, 8923, 8554, 81783, 165742, 1371683, 1727601, 9386566, 28190643, 63416789 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
Popular Computing (Calabasas, CA), Two Tables, Vol. 1, (No. 9, Dec 1973), page PC9-16.
EXAMPLE
a(3)=42 because 2^42(i.e. 4398046511104) is the smallest power of 2 to contain a run of 3 consecutive ones in its decimal form.
MATHEMATICA
a = ""; Do[ a = StringJoin[a, "1"]; b = StringJoin[a, "1"]; k = 1; While[ StringPosition[ ToString[2^k], a] == {} || StringPosition[ ToString[2^k], b] != {}, k++ ]; Print[k], {n, 1, 10} ]
PROG
(Python)
def A131535(n):
s, t, m, k, u = '1'*n, '1'*(n+1), 0, 1, '1'
while s not in u or t in u:
m += 1
k *= 2
u = str(k)
return m # Chai Wah Wu, Jan 28 2020
CROSSREFS
Sequence in context: A214563 A111167 A070980 * A118473 A118635 A097373
KEYWORD
more,nonn,base
AUTHOR
Shyam Sunder Gupta, Aug 26 2007
EXTENSIONS
2 more terms from Sean A. Irvine, Jul 19 2010
a(13)-a(14) from Lars Blomberg, Jan 24 2013
a(15) from Bert Dobbelaere, Feb 25 2019
a(0) added and a(1) corrected by Chai Wah Wu, Jan 28 2020
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 23 03:30 EDT 2024. Contains 371906 sequences. (Running on oeis4.)