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

A211424
Number of ordered triples (w,x,y) with all terms in {-n,...,0,...,n} and w^2+3*x*y=0.
2
1, 5, 9, 21, 25, 29, 49, 53, 57, 69, 73, 77, 105, 109, 113, 125, 137, 141, 161, 165, 169, 181, 185, 189, 217, 229, 233, 261, 265, 269, 297, 301, 313, 325, 329, 333, 369, 373, 377, 389, 393, 397, 417, 421, 425, 445, 449, 453, 497, 517, 529, 541, 545
OFFSET
0,2
COMMENTS
For a guide to related sequences, see A211422.
MATHEMATICA
t[n_] := t[n] = Flatten[Table[w^2 + 3 x*y, {w, -n, n}, {x, -n, n}, {y, -n, n}]]
c[n_] := Count[t[n], 0]
t = Table[c[n], {n, 0, 70}] (* A211424 *)
(t - 1)/4 (* integers *)
CROSSREFS
Cf. A211422.
Sequence in context: A376288 A175364 A244642 * A211428 A160720 A147552
KEYWORD
nonn
AUTHOR
Clark Kimberling, Apr 10 2012
STATUS
approved