OFFSET
0,8
COMMENTS
Generalization
1/8 = Sum_{i >= 0} 2^i/10^(i+1),
1/98 = Sum_{i >= 0} 2^i/100^(i+1), (A021102),
1/998 = Sum_{i >= 0} 2^i/1000^(i+1), (A022002),
1/9998 = Sum_{i >= 0} 2^i/10000^(i+1), (this sequence).
A "curiosity": the first 13 groups of digits in groups of 4 give the successive powers of 2:
0, 0, 0, 1,
0, 0, 0, 2,
0, 0, 0, 4,
0, 0, 0, 8,
0, 0, 1, 6,
0, 0, 3, 2,
0, 0, 6, 4,
0, 1, 2, 8,
0, 2, 5, 6,
0, 5, 1, 2,
1, 0, 2, 4,
2, 0, 4, 8,
4, 0, 9, 6, <-- the last explicit power of 2
8, 1, 9, 3,
6, 3, 8, 7,
etc.
LINKS
Jean-François Alcover, Table of n, a(n) for n = 0..359
EXAMPLE
0.0001000200040008001600320064012802560512102420484096819363872774554910982...
MATHEMATICA
Join[{0, 0, 0}, RealDigits[1/9998, 10, 102] // First]
PROG
(PARI) 1/9998. \\ Charles R Greathouse IV, Feb 26 2014
CROSSREFS
KEYWORD
AUTHOR
Jean-François Alcover, Jan 31 2014
STATUS
approved
