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!)
A168316 Triangle read by rows, square of triangle A101688. 3
1, 0, 1, 0, 2, 1, 0, 1, 2, 1, 0, 1, 3, 2, 1, 0, 0, 2, 3, 2, 1, 0, 0, 2, 4, 3, 2, 1, 0, 0, 1, 3, 4, 3, 2, 1, 0, 0, 1, 3, 5, 4, 3, 2, 1, 0, 0, 0, 2, 4, 5, 4, 3, 2, 1, 0, 0, 0, 2, 4, 6, 5, 4, 3, 2, 1, 0, 0, 0, 1, 3, 5, 6, 5, 4, 3, 2, 1, 0, 0, 0, 1, 3, 5, 7, 6, 5, 4, 3, 2, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,5
COMMENTS
Row sums = A129819 starting (1, 1, 3, 4, 7, 8, 12,...).
Eigensequence of the triangle = A168317: (1, 1, 3, 6, 16, 39, 103, 263, 690,...).
LINKS
FORMULA
Triangle read by rows, (A101688)^2, as an infinite lower triangular matrix.
EXAMPLE
First few rows of the triangle =
1;
0, 1;
0, 2, 1;
0, 1, 2, 1;
0, 1, 3, 2, 1;
0, 0, 2, 3, 2, 1;
0, 0, 2, 4, 3, 2, 1;
0, 0, 1, 3, 4, 3, 2, 1;
0, 0, 1, 3, 5, 4, 3, 2, 1;
0, 0, 0, 2, 4, 5, 4, 3, 2, 1;
0, 0, 0, 2, 4, 6, 5, 4, 3, 2, 1;
0, 0, 0, 1, 3, 5, 6, 5, 4, 3, 2, 1;
0, 0, 0, 1, 3, 5, 7, 6, 5, 4, 3, 2, 1;
0, 0, 0, 0, 2, 4, 6, 7, 6, 5, 4, 3, 2, 1;
0, 0, 0, 0, 2, 4, 6, 8, 7, 6, 5, 4, 3, 2, 1;
0, 0, 0, 0, 1, 3, 5, 7, 8, 7, 6, 5, 4, 3, 2, 1;
0, 0, 0, 0, 1, 3, 5, 7, 9, 8, 7, 6, 5, 4, 3, 2, 1;
0, 0, 0, 0, 0, 2, 4, 6, 8, 9, 8, 7, 6, 5, 4, 3, 2, 1;
0, 0, 0, 0, 0, 2, 4, 6, 8, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1;
0, 0, 0, 0, 0, 1, 3, 5, 7, 9, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1;
...
MATHEMATICA
rows = 15; A = Array[If[#1 <= #2, 1, 0]&, {rows, rows}];
M = Table[PadRight[Table[A[[i-j+1, j]], {j, 1, i}], rows], {i, 1, rows}];
M2 = MatrixPower[M, 2];
Table[M2[[i, j]], {i, 1, rows}, {j, 1, i}] // Flatten (* Jean-François Alcover, May 04 2017 *)
CROSSREFS
Sequence in context: A170975 A284313 A169975 * A305259 A029370 A369572
KEYWORD
nonn,tabl
AUTHOR
Gary W. Adamson, Nov 22 2009
EXTENSIONS
Missing row inserted by Jean-François Alcover, May 04 2017
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 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)