|
Search: id:A131540
|
|
|
| A131540 |
|
Least power of 2 having exactly n consecutive 6's in its decimal representation. |
|
+0 1
|
|
| 4, 46, 157, 222, 220, 2269, 11019, 18842, 192918, 192916
(list; graph; listen)
|
|
|
OFFSET
|
1,1
|
|
|
EXAMPLE
|
a(3)=157 because 2^157(i.e. 182687704666362864775460604089535377456991567872) is the smallest power of 2 to contain a run of 3 consecutive sixes in its decimal form.
|
|
MATHEMATICA
|
a = ""; Do[ a = StringJoin[a, "6"]; b = StringJoin[a, "6"]; k = 1; While[ StringPosition[ ToString[2^k], a] == {} || StringPosition[ ToString[2^k], b] != {}, k++ ]; Print[k], {n, 1, 10} ]
|
|
CROSSREFS
|
Sequence in context: A119729 A134110 A119046 this_sequence A132932 A097952 A097643
Adjacent sequences: A131537 A131538 A131539 this_sequence A131541 A131542 A131543
|
|
KEYWORD
|
more,nonn,base
|
|
AUTHOR
|
Shyam Sunder Gupta (guptass(AT)rediffmail.com), Aug 26 2007
|
|
|
Search completed in 0.002 seconds
|