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”).

A000548
Squares that are not the sum of 2 nonzero squares.
6
1, 4, 9, 16, 36, 49, 64, 81, 121, 144, 196, 256, 324, 361, 441, 484, 529, 576, 729, 784, 961, 1024, 1089, 1296, 1444, 1764, 1849, 1936, 2116, 2209, 2304, 2401, 2916, 3136, 3249, 3481, 3844, 3969, 4096, 4356, 4489
OFFSET
1,2
COMMENTS
Squares of nonhypotenuse numbers A004144(n). - Lekraj Beedassy, Jul 06 2004
A143574(a(n)) = a(n); intersection of A000290 and A143575. - Reinhard Zumkeller, Aug 24 2008
FORMULA
A000290 \ A134422. - R. J. Mathar, Feb 06 2011
MATHEMATICA
okQ[n_] := n == 1 || AllTrue[FactorInteger[n][[All, 1]], Mod[#, 4] != 1& ]; A000548 = Select[Range[100], okQ]^2 (* Jean-François Alcover, Feb 09 2016 *)
CROSSREFS
Sequence in context: A014764 A100498 A068952 * A256944 A349062 A106575
KEYWORD
nonn
STATUS
approved