OFFSET
1,1
EXAMPLE
a(3) = 33 because the solutions to x^2 + y^2 = 5*13*17 are (x,y) = (23,24), (9,32), (4,33), (12,31) and the value of y corresponding to the smallest value of x is 33.
PROG
(PARI) a(n) = my(t=1, v); forprimestep(p=5, oo, 4, t*=p; if(!n--, break)); v=qfbsolve(Qfb(1, 0, 1), t, 3); vecmax(vector(#v, i, vecmax(abs(v[i])))); \\ Jinyuan Wang, Apr 30 2025
CROSSREFS
KEYWORD
nonn
AUTHOR
Colin Barker, Jan 24 2014
EXTENSIONS
a(22) from Jinyuan Wang, Apr 30 2025
STATUS
approved
