|
Search: id:A131541
|
|
|
| A131541 |
|
Least power of 2 having exactly n consecutive 7's in its decimal representation. |
|
+0 1
|
|
| 15, 27, 24, 181, 317, 2309, 972, 25264, 131979, 279275
(list; graph; listen)
|
|
|
OFFSET
|
1,1
|
|
|
EXAMPLE
|
a(3)=24 because 2^24(i.e. 16777216) is the smallest power of 2 to contain a run of 3 consecutive sevens in its decimal form.
|
|
MATHEMATICA
|
a = ""; Do[ a = StringJoin[a, "7"]; b = StringJoin[a, "7"]; k = 1; While[ StringPosition[ ToString[2^k], a] == {} || StringPosition[ ToString[2^k], b] != {}, k++ ]; Print[k], {n, 1, 10} ]
|
|
CROSSREFS
|
Sequence in context: A063936 A132452 A063552 this_sequence A080945 A080946 A110703
Adjacent sequences: A131538 A131539 A131540 this_sequence A131542 A131543 A131544
|
|
KEYWORD
|
more,nonn,base
|
|
AUTHOR
|
Shyam Sunder Gupta (guptass(AT)rediffmail.com), Aug 26 2007
|
|
|
Search completed in 0.002 seconds
|