login
A389885
Decimal expansion of 1/7142857.
1
0, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 0, 2, 8, 0, 0, 0, 0, 0, 0, 5, 6, 0, 0, 0, 0, 0, 1, 1, 2, 0, 0, 0, 0, 0, 2, 2, 4, 0, 0, 0, 0, 0, 4, 4, 8, 0, 0, 0, 0, 0, 8, 9, 6, 0, 0, 0, 0, 1, 7, 9, 2, 0, 0, 0, 0, 3, 5, 8, 4, 0, 0, 0, 0, 7, 1, 6, 8, 0, 0, 0, 1, 4, 3, 3, 6, 0, 0, 0, 2, 8, 6, 7, 2
OFFSET
0,8
COMMENTS
If divided in blocks of length 8, the value of each block is twice the value of the previous block. This doubling pattern breaks at the 23rd block, since after 23 doublings (at the 24th block) the value is > 10^8 - 1 and the overflow is carried over to the 23rd block.
Purely periodic with period A007732(7142857) = 3416138 and which is the linear recurrence order too. - Kevin Ryde, Nov 19 2025
FORMULA
Equals 7*Sum_{k >= 1} (2/10^8)^k.
EXAMPLE
0.000000140000002800000056000001120000022400000448...
MATHEMATICA
First[RealDigits[1/7142857, 10, 100, -1]]
PROG
(PARI) a(n) = lift(Mod(10, 71428570)^((n+1) % 3416138)) \ 7142857; \\ Kevin Ryde, Nov 19 2025
CROSSREFS
Sequence in context: A308428 A396549 A308276 * A340977 A180989 A075444
KEYWORD
nonn,cons,easy
AUTHOR
Paolo Xausa, Nov 16 2025
STATUS
approved