OFFSET
1,3
COMMENTS
This equation is a Pellian equation of the form x^2 - D^2*y^2 = N.
LINKS
Colin Barker, Table of n, a(n) for n = 1..1000
EXAMPLE
21 is in the sequence because the equation x^2 - 25*y^2 = 21 has the solution (X,Y) = (11,2).
PROG
(PARI)
b(n) = sumdiv(n, f, f^2<=n && (n-f^2)%(10*f)==0) \\ See A239434
s=[]; for(n=0, 250, if(b(n)>0, s=concat(s, n))); s
CROSSREFS
KEYWORD
nonn
AUTHOR
Colin Barker, Mar 18 2014
STATUS
approved