login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
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 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,5
LINKS
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

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 09:38 EDT 2024. Contains 371967 sequences. (Running on oeis4.)