A Lucas prime must satisfy two separate questions at once: does it belong to the Lucas sequence 2, 1, 3, 4, 7, 11, 18, 29, 47... and does it have only one and itself as divisors? Small answers are easy — 7, 47, 199 — but traps wait everywhere: 18 is Lucas and not prime, 29 is both, 5 is prime and never Lucas, and even 2207, the ninth Lucas prime, fools the unaided eye. Membership alone never decides anything.
Lucas Prime Test runs both checks exactly. The Lucas square identity — 5n squared ± 20 a perfect square — decides membership and the index; a twelve-base Miller-Rabin test decides primality on BigInt values, immune to rounding. Verdicts come as one of four labels, batches of 10,000 values run in a single pass, and nothing ever leaves the browser.