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

A211425
Number of ordered triples (w,x,y) with all terms in {-n,...,0,...,n} and w^2+4*x*y=0.
2
1, 5, 13, 17, 33, 37, 45, 49, 65, 77, 85, 89, 113, 117, 125, 129, 153, 157, 173, 177, 193, 197, 205, 209, 241, 261, 269, 281, 297, 301, 317, 321, 345, 349, 357, 361, 401, 405, 413, 417, 441, 445, 453, 457, 473, 485, 493, 497, 537, 565, 589, 593, 609
OFFSET
0,2
COMMENTS
For a guide to related sequences, see A211422.
MATHEMATICA
t[n_] := t[n] = Flatten[Table[w^2 + 4 x*y, {w, -n, n}, {x, -n, n}, {y, -n, n}]]
c[n_] := Count[t[n], 0]
t = Table[c[n], {n, 0, 70}] (* A211425 *)
(t - 1)/4 (* integers *)
CROSSREFS
Cf. A211422.
Sequence in context: A038938 A253079 A184851 * A245906 A191108 A216575
KEYWORD
nonn
AUTHOR
Clark Kimberling, Apr 10 2012
STATUS
approved