OFFSET
1,3
COMMENTS
x^2 + 4y^2 has discriminant -16.
Numbers that can be expressed as both the sum of two squares and the difference of two squares; the intersection of sequences A001481 and A042965. - T. D. Noe, Feb 05 2003
A004531(n) is nonzero if and only if n is of the form x^2 + 4*y^2. - Michael Somos, Jan 05 2012
These are the sum of two squares that are congruent to 0 or 1 (mod 4), and thus that are also the difference of two squares. - Jean-Christophe Hervé, Oct 25 2015
LINKS
Jean-Christophe Hervé, Table of n, a(n) for n = 1..7500
N. J. A. Sloane et al., Binary Quadratic Forms and OEIS (Index to related sequences, programs, references)
FORMULA
MATHEMATICA
Select[Range[0, 300], SquaresR[2, #] != 0 && Mod[#, 4] != 2&] (* Jean-François Alcover, May 13 2017 *)
PROG
(PARI) for(n=0, 1e3, if(if( n<1, n==0, 2 * qfrep([ 1, 0; 0, 4], n)[n]) != 0, print1(n, ", "))) \\ Altug Alkan, Oct 29 2015
(Magma) [n: n in [0..208] | NormEquation(4, n) eq true]; // Arkadiusz Wesolowski, May 11 2016
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
STATUS
approved