The Lucas sequence 2, 1, 3, 4, 7, 11, 18, 29, 47, 76, 123, 199, 322... has a secret: sprinkled among those values are primes. L(4) = 7, L(5) = 11, L(7) = 29, L(8) = 47, then a long dry stretch until L(11) = 199 and L(13) = 521. The pattern is elusive — most Lucas numbers are composite, some are even, some are trapped divisible by 3 — and only a scanning test with exact arithmetic can separate the gold from the gravel.
Lucas Primes Generator scans the sequence from index 0 up to any bound you set, skips whole composite families with algebraic filters, and verifies every surviving candidate with a twelve-base Miller-Rabin test on BigInt values. The result is a clean list: index, full decimal value, verification note. Progress phases keep large scans responsive, and one click copies or downloads everything.