OFFSET
1,1
COMMENTS
There are 60 values of x>0 which satisfy 10^11 + x^2 = y^2. - Bruno Berselli, Jan 29 2013
LINKS
Giovanni Resta, Table of n, a(n) for n = 1..60 (full sequence)
MATHEMATICA
Block[{x, y}, x /. List@ToRules@Reduce[10^11 + x^2 == y^2 && y > x > 0, Integers]] (* Giovanni Resta, Jan 29 2013 *)
PROG
(Magma) [n: n in [0..10^7] | IsSquare(n^2 + 10^11)]; // Vincenzo Librandi, Jan 29 2013
(PARI) is(n)=issquare(10^11+n^2) \\ Charles R Greathouse IV, Jan 29 2013
CROSSREFS
KEYWORD
nonn,easy,fini,full
AUTHOR
Jason Earls, Sep 30 2010
STATUS
approved