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!)
A215728 a(n) is the smallest m for which 5^m contains n consecutive identical digits. 14
0, 11, 50, 95, 125, 1087, 2786, 2790, 2796, 2797, 2802, 2803, 1040703, 5547565, 7761841, 17876345 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
a(13) > 893000. - Chai Wah Wu, Dec 17 2014
LINKS
PROG
(Python)
def A215728(n):
l, x = [str(d)*n for d in range(10)], 1
for m in range(10**9):
s = str(x)
for k in l:
if k in s:
return m
x *= 5
return 'search limit reached'
# Chai Wah Wu, Dec 17 2014
CROSSREFS
Sequence in context: A241964 A306425 A241406 * A185019 A212560 A341735
KEYWORD
nonn,base,more
AUTHOR
V. Raman, Aug 22 2012
EXTENSIONS
a(13)-a(14) from Giovanni Resta, Apr 19 2016
a(15)-a(16) from Bert Dobbelaere, Feb 13 2019
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 18 03:33 EDT 2024. Contains 371767 sequences. (Running on oeis4.)