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

A106314
Triangle T(n,k) composed of the squares min(n,k)^2.
7
1, 1, 1, 1, 4, 1, 1, 4, 4, 1, 1, 4, 9, 4, 1, 1, 4, 9, 9, 4, 1, 1, 4, 9, 16, 9, 4, 1, 1, 4, 9, 16, 16, 9, 4, 1, 1, 4, 9, 16, 25, 16, 9, 4, 1, 1, 4, 9, 16, 25, 25, 16, 9, 4, 1
OFFSET
1,5
FORMULA
T(n,k) = A003983(n,k)^2.
EXAMPLE
Replacing each term in A003983 by its square, we get:
{1},
{1, 1},
{1, 4, 1},
{1, 4, 4, 1},
{1, 4, 9, 4, 1},
{1, 4, 9, 9, 4, 1},
{1, 4, 9, 16, 9, 4, 1},
{1, 4, 9, 16, 16, 9, 4, 1},
{1, 4, 9, 16, 25, 16, 9, 4, 1},
{1, 4, 9, 16, 25, 25, 16, 9, 4, 1},
{1, 4, 9, 16, 25, 36, 25, 16, 9, 4, 1}
MATHEMATICA
Clear[p, n, i];
p[x_, n_] = Sum[x^i*If[i ==Floor[n/2] && Mod[n, 2] == 0, 0, If[i <= Floor[n/2], 2*i + 1, -(2*(n - i) + 1)]], {i, 0, n}]/(1 - x);
Table[CoefficientList[FullSimplify[p[x, n]], x], {n, 1, 11}];
Flatten[%]
CROSSREFS
Cf. A003983, A106314, A005993 (row sums).
Sequence in context: A046596 A174093 A204028 * A152716 A298575 A326039
KEYWORD
nonn,tabl,easy
AUTHOR
Gary W. Adamson, Apr 28 2005
EXTENSIONS
Additional comments from Roger L. Bagula and Gary W. Adamson, Apr 02 2009
STATUS
approved