OFFSET
1,1
COMMENTS
The discriminant is -864.
All terms are congruent to 11 modulo 24.
LINKS
Steven Lu, Table of n, a(n) for n = 1..10000
EXAMPLE
83 = 11 * 1^2 - 4 * 1 * 2 + 20 * 2^2.
107 = 11 * 3^2 - 4 * 3 * 1 + 20 * 1^2.
179 = 11 * 1^2 - 4 * 1 * 3 + 20 * 3^2.
MATHEMATICA
With[{limit = 8000},
Sort[DeleteDuplicates[
Select[Flatten[
Table[11 x^2 - 4 x y + 20 y^2, {x,
Floor[Sqrt[20 limit/216]]}, {y, Floor[Sqrt[11 limit/216]]}]],
PrimeQ[#] && # < limit &]]]]
CROSSREFS
KEYWORD
nonn
AUTHOR
Steven Lu, Apr 19 2026
STATUS
approved
