A206438 Triangle read by rows which lists the squares of the parts of A135010.
1, 1, 4, 1, 1, 9, 1, 1, 1, 4, 4, 16, 1, 1, 1, 1, 1, 4, 9, 25, 1, 1, 1, 1, 1, 1, 1, 4, 4, 4, 4, 16, 9, 9, 36, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 4, 4, 9, 4, 25, 9, 16, 49, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 4, 4, 4, 4, 4, 4, 16, 4, 9, 9, 4, 36, 9, 25
Offset: 1
Examples
Written as a triangle: 1; 1,4; 1,1,9; 1,1,1,4,4,16; 1,1,1,1,1,4,9,25; 1,1,1,1,1,1,1,4,4,4,4,16,9,9,36; 1,1,1,1,1,1,1,1,1,1,1,4,4,9,4,25,9,16,49;
Links
- Alois P. Heinz, Rows n = 1..23, flattened
Crossrefs
Programs
-
Mathematica
Table[Reverse@ConstantArray[{1}, PartitionsP[n - 1]] ~Join~ DeleteCases[Sort@PadRight[Reverse/@Cases[IntegerPartitions[n], x_ /; Last[x] != 1]], x_ /; x == 0, 2], {n, 1, 8}] ^2 // Flatten (* Robert Price, May 28 2020 *)
Formula
a(n) = A135010(n)^2.
Comments