|
| |
|
|
A006889
|
|
Least power of 2 having exactly n consecutive 0's in its decimal representation.
(Formerly M4710)
|
|
1
| |
|
|
0, 10, 53, 242, 377, 1491, 1492, 6801, 14007, 100823, 559940, 1148303, 4036338, 4036339, 53619497, 119476156, 146226201, 918583174
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 0,2
|
|
|
REFERENCES
| N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
|
|
|
EXAMPLE
| 2^53619497 is the smallest power of 2 to contain a run of 14 consecutive zeros in its decimal form.
2^119476156 (a 35965907-digit number) contains the sequence ...40030000000000000008341... about one third of the way through.
|
|
|
MATHEMATICA
| a = ""; Do[ a = StringJoin[a, "0"]; b = StringJoin[a, "0"]; k = 1; While[ StringPosition[ ToString[2^k], a] == {} || StringPosition[ ToString[2^k], b] != {}, k++ ]; Print[k], {n, 1, 10} ] (Robert G. Wilson v)
|
|
|
CROSSREFS
| Cf. A031146.
Sequence in context: A200035 A119543 A063899 * A007035 A093187 A152762
Adjacent sequences: A006886 A006887 A006888 * A006890 A006891 A006892
|
|
|
KEYWORD
| nonn,hard,base
|
|
|
AUTHOR
| P. D. Mitchelmore (dh115(AT)city.ac.uk)
|
|
|
EXTENSIONS
| 3 more terms from Clive J. Tooth, Jan 24 2001. One more term from Clive Tooth (clive.tooth(AT)unisys.com), Nov 28 2001
One more term from Sacha Roscoe (scarletmanuka(AT)iprimus.com.au), Dec 16 2002
a(17) from Sacha Roscoe (scarletmanuka(AT)iprimus.com.au), Feb 06 2007
|
| |
|
|