cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-1 of 1 results.

A277231 Irregular triangular array T(n, k) giving in row n the so-called slope of the Ferrers diagram of the k-th partition of n into distinct parts. The partitions of n are taken in Abramowitz-Stegun order but with decreasing parts. See a comment for the definition of this 'slope'.

Original entry on oeis.org

1, 1, 1, 2, 1, 1, 1, 1, 2, 1, 1, 1, 3, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 2, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 2, 1, 4, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 3, 1, 2, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 2, 1, 1, 2, 1, 4, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 3, 1, 1, 1, 1, 2, 1, 5
Offset: 1

Views

Author

Wolfdieter Lang, Oct 21 2016

Keywords

Comments

The row length of this irregular triangular array is A000009(n).
The slope T(n, k) of the k-th partition of n into distinct parts is here defined as the number of nodes of the Ferrers diagram (rows with falling parts) that lie on the NE-SW diagonal through the last node on the first row. (This diagonal has, of course, the usual slope 1.)
The number of parts m of these, also called strict or fermionic, partitions is from m = 1, 2, ..., A003056(n).
The row sums give [1, 1, 3, 2, 4, 6, 6, 7, 11, 14, 14, 19, 22, 28, 36, ...].
For details, references and examples see A277230.

Examples

			The irregular triangle begins (brackets separate partitions with equal number of parts m = 1, 2, 3, ..., A003056(n)):
n\k   1   2  3   4   5   6  7  8  9   10 ...
1:   [1]
2:   [1]
3:   [1] [2]
4:   [1] [1]
5:   [1] [1, 2]
6:   [1] [1, 1] [3]
7:   [1] [1, 1,  2] [1]
8:   [1] [1, 1,  1] [1,  2]
9:   [1] [1, 1,  1,  2] [1, 1, 3]
10:  [1] [1, 1,  1,  1] [1, 1, 2, 1] [4]
...
n = 11: [1] [1, 1, 1, 1, 2] [1, 1, 1, 1, 2] [1],
n = 12: [1] [1, 1, 1, 1, 1] [1, 1, 1, 2, 1, 1, 3] [1, 2],
n = 13: [1] [1, 1, 1, 1, 1, 2] [1, 1, 1, 1, 1, 1, 2, 1] [1, 1, 3],
n = 14: [1] [1, 1, 1, 1, 1, 1] [1, 1, 1, 1, 2, 1, 1, 1, 1, 2] [1, 1, 2, 1, 4],
n = 15: [1] [1, 1, 1, 1, 1, 1, 2] [1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 3] [1, 1, 1, 1, 2, 1] [5].
		

Crossrefs

Cf. A000009, A003056, A277230, A366509 (row records).

Programs

  • Mathematica
    Table[Function[w, Flatten@ Map[Function[k, 1 + Count[ TakeWhile[ Abs@ Differences@ #, # == 1 &], 1] & /@ Select[w, Length@ # == k &]], Range@ Max@ Map[Length, w]]]@ Select[DeleteCases[IntegerPartitions@ n, w_ /; MemberQ[Differences@ w, 0]], Length@ # <= Floor[(Sqrt[1 + 8 n] - 1)/2] &], {n, 15}] // Flatten (* Michael De Vlieger, Oct 26 2016 *)
Showing 1-1 of 1 results.