Every schoolbook stops at zero when it draws the Fibonacci sequence, but the recurrence F(n) = F(n-1) + F(n-2) holds the same 1, 1, 2, 3, 5, 8, 13 pattern on the other side of the axis. Run it backwards and a stranger, signed mirror appears: 13, -8, 5, -3, 2, -1, 1, 0. The absolute values are the familiar Fibonacci numbers, and the signs alternate by the identity F(-n) = (-1)^(n+1)·F(n) — a compact rule that generates the entire negative half exactly.
Negafibonacci Numbers Generator computes the extended sequence for any integer index range, from -20 to 20 up to -10,000 to 10,000. Every term uses exact BigInt arithmetic, rows show index and value, a summary proves that symmetric ranges sum to zero, and the output downloads or copies in one click. A reference tab documents the identity, the sign rule and the first negative terms. Everything runs in your browser; nothing is uploaded.