Documentation

FormalConjectures.Wikipedia.Pell

Infinitude of Pell number primes #

References:

The Pell numbers $P_n$ are defined by $P_0 = 0$, $P_1 = 1$, $P_{n+2} = 2*P_{n+1} + P_n$. OEIS A129

The conjecture says that there are infinitely many prime Pell numbers.

The Pell numbers $P_n$ are defined by $P_0 = 0$, $P_1 = 1$, $P_{n+2} = 2*P_{n+1} + P_n$

Equations
Instances For

    Similar to Fibonacci numbers, there exist numerous identites around Pell numbers, i.e. P_{2n+1} = P_n ^ 2 + P_{n+1} ^ 2

    theorem PellNumbers.coe_pellNumber_eq (n : ) :
    (pellNumber n) = ((1 + 2) ^ n - (1 - 2) ^ n) / (2 * 2)

    An explicit formula for Pell numbers, similar to Binet's formula

    There are infinitely many prime Pell numbers