A Fibonacci prime is the rarest special number in elementary arithmetic: it must be both a member of the Fibonacci sequence and a prime. The list starts 2, 3, 5, 13, 89, 233, 1597, 28657 — sparse values at sparse indexes, and because 8 and 21 already show composite Fibonacci numbers, the intersection is genuinely narrow. Even deciding whether a number like 433494437 qualifies needs two tests, and an eyeball does neither well.
Fibonacci Prime Test applies both checks exactly, in your browser. Membership uses the Lucas identity (5n squared ± 4 is a square) with BigInt square roots, and primality uses a deterministic-for-all-practical-sizes Miller-Rabin test. Every input gets a full classification — Fibonacci prime, Fibonacci composite, or not Fibonacci — with its index, and batches of 10,000 values run in one pass. Nothing is uploaded, ever.