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!)
A166453 Triangle read by rows, square of Sierpinski's gasket, (A047999)^2 1
1, 2, 1, 2, 0, 1, 4, 2, 2, 1, 2, 0, 0, 0, 1, 4, 2, 0, 0, 2, 1, 4, 0, 2, 0, 2, 0, 1, 8, 4, 4, 2, 4, 2, 2, 1, 2, 0, 0, 0, 0, 0, 0, 0, 1, 4, 2, 0, 0, 0, 0, 0, 0, 2, 1, 4, 0, 2, 0, 0, 0, 0, 0, 2, 0, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Row sums = A048883: (1, 3, 3, 9, 3, 9, 9, 27, 3, 9, 9, 27,...)
Left border = A001316
LINKS
E. Burlachenko, Fractal generalized Pascal matrices, arXiv:1612.00970 [math.NT], 2016. See p. 13.
FORMULA
(A047999)^2, as an infinite lower triangular matrix.
EXAMPLE
First few rows of the triangle =
1;
2, 1;
2, 0, 1;
4, 2, 2, 1;
2, 0, 0, 0, 1;
4, 2, 0, 0, 2, 1;
4, 0, 2, 0, 2, 0, 1;
8, 4, 4, 2, 4, 2, 2, 1;
2, 0, 0, 0, 0, 0, 0, 0, 1;
4, 2, 0, 0, 0, 0, 0, 0, 2, 1;
4, 0, 2, 0, 0, 0, 0, 0, 2, 0, 1;
8, 4, 4, 2, 0, 0, 0, 0, 4, 2, 2, 1;
4, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 1;
...
MATHEMATICA
rows = 11;
T = PadRight[#, rows]& /@ Mod[NestList[Prepend[#, 0] + Append[#, 0]&, {1}, rows-1], 2];
T2 = T.T;
Table[T2[[i, j]], {i, 1, rows}, {j, 1, i}] // Flatten (* Jean-François Alcover, Aug 08 2018, after Robert G. Wilson v *)
CROSSREFS
Sequence in context: A129559 A129680 A118231 * A118233 A255273 A181117
KEYWORD
nonn,tabl
AUTHOR
Gary W. Adamson, Oct 13 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 23 07:11 EDT 2024. Contains 371905 sequences. (Running on oeis4.)