login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A180972
Numbers n such that 8^9 + n^2 is a square.
0
4096, 14336, 31744, 65024, 130816, 262016, 524224, 1048544, 2097136, 4194296, 8388604, 16777214, 33554431
OFFSET
1,1
MATHEMATICA
Module[{x, y}, x /. List@ToRules@Reduce[8^9 + x^2 == y^2 && y > x > 0, Integers]] (* Giovanni Resta, Jan 29 2013 *)
x/.Solve[{8^9+x^2==y^2, x>0, y>0}, {x, y}, Integers] (* Harvey P. Dale, Mar 16 2019 *)
PROG
(Magma) [n: n in [0..2^25] | IsSquare(8^9+n^2)]; // Vincenzo Librandi, Jan 29 2013
(PARI) is(n)=issquare(8^9+n^2) \\ Charles R Greathouse IV, Jan 29 2013
CROSSREFS
Sequence in context: A043424 A138174 A258735 * A255665 A223334 A231945
KEYWORD
nonn,easy,fini,full
AUTHOR
Jason Earls, Sep 30 2010
STATUS
approved