login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo

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 60th year, we have over 367,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

Other ways to Give
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A131537 Least exponent k such that 2^k has exactly n consecutive 3's in its decimal representation. 2
5, 25, 83, 219, 221, 2270, 11020, 18843, 192915, 271978, 743748, 1039315, 13873203, 14060685 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
No more terms < 28*10^6.
LINKS
Popular Computing (Calabasas, CA), Two Tables, Vol. 1, (No. 9, Dec 1973), page PC9-16.
EXAMPLE
a(3) = 83 because 2^83 (= 9671406556917033397649408) is the smallest power of 2 to contain a run of exactly 3 consecutive threes in its decimal form.
MATHEMATICA
a = ""; Do[ a = StringJoin[a, "3"]; b = StringJoin[a, "3"]; k = 1; While[ StringPosition[ ToString[2^k], a] == {} || StringPosition[ ToString[2^k], b] != {}, k++ ]; Print[k], {n, 1, 9} ]
PROG
(Python)
def a(n):
k, n2, np2 = 1, '3'*n, '3'*(n+1)
while True:
while not n2 in str(2**k): k += 1
if np2 not in str(2**k): return k
k += 1
print([a(n) for n in range(1, 9)]) # Michael S. Branicky, May 25 2021
CROSSREFS
Cf. A000079.
Sequence in context: A355949 A147114 A296669 * A250555 A147122 A051229
KEYWORD
nonn,base,more
AUTHOR
Shyam Sunder Gupta, Aug 26 2007
EXTENSIONS
a(10)-a(12) from Sean A. Irvine, Jul 19 2010
a(13)-a(14) from Lars Blomberg, Jan 24 2013
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 December 9 19:52 EST 2023. Contains 367693 sequences. (Running on oeis4.)