OFFSET
1,2
COMMENTS
Because 4x^2-4*x*y+7*y^2 = (2*x-y)^2+6*y^2, this is a subsequence of A002481. - R. J. Mathar, Jan 18 2021
LINKS
Robert Israel, Table of n, a(n) for n = 1..10000
MAPLE
N:= 1000: # for terms <= N
R:= {}:
for x from 0 while 24*x^2/7 < N do
for y from 0 do
v:= 4*x^2 - 4*x*y + 7*y^2;
if v <= N then if not isprime(v) then R:= R union {v} fi
elif y > 2*x/7 then break
fi od od:
sort(convert(R, list)); # Robert Israel, Sep 30 2025
CROSSREFS
KEYWORD
nonn
AUTHOR
Artur Jasinski, Nov 25 2007
STATUS
approved
