The Lucas sequence 2, 1, 3, 4, 7, 11, 18, 29... ends the story too early — mathematics insists on extending recurrences backwards. The negalucas numbers do exactly that: L(-1) = -1, L(-2) = 3, L(-3) = -4, L(-4) = 7, L(-5) = -11, L(-6) = 18... The mirror rule L(-n) = (-1)^n L(n) alternates signs, always returning the positive Lucas values with a twist of sign, and the recurrence L(k) = L(k-1) + L(k-2) keeps holding on both sides of zero.
Negalucas Numbers Generator builds the extended sequence to any range you specify — from negative indexes to positive — with BigInt-exact values and a formula note on every negative row. Choose a start index from -500 to 500, take up to 200 terms, and copy or download the whole indexed list. All computation happens in the browser.