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!)
A239302 Triangular array: T(n,k) = number of partitions x(1) > x(2) > ... > x(k) of n+2 such that x(1) = x(2) + k, for n >= 1. 1
1, 0, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 2, 1, 1, 1, 1, 0, 1, 2, 2, 1, 1, 1, 1, 0, 1, 2, 2, 2, 1, 1, 1, 1, 0, 1, 3, 2, 2, 2, 1, 1, 1, 1, 0, 1, 3, 3, 2, 2, 2, 1, 1, 1, 1, 0, 1, 4, 3, 3, 2, 2, 2, 1, 1, 1, 1, 0, 1, 5, 4, 3, 3, 2, 2, 2, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,22
COMMENTS
The columns are identical, and the limit of the reversal of rows is A087897(n+3).
Sum of row n equals A111133(n+3).
LINKS
EXAMPLE
First 17 rows:
1
0 1
1 0 1
1 1 0 1
1 1 1 0 1
1 1 1 1 0 1
2 1 1 1 1 0 1
2 2 1 1 1 1 0 1
2 2 2 1 1 1 1 0 1
3 2 2 2 1 1 1 1 0 1
3 3 2 2 2 1 1 1 1 0 1
4 3 3 2 2 2 1 1 1 1 0 1
5 4 3 3 2 2 2 1 1 1 1 0 1
5 5 4 3 3 2 2 2 1 1 1 1 0 1
6 5 5 4 3 3 2 2 2 1 1 1 1 0 1
8 6 5 5 4 3 3 2 2 2 1 1 1 1 0 1
8 8 6 5 5 4 3 3 2 2 2 1 1 1 1 0 1
To account for row 7, start with the strict partitions (A000009) of 9 that have more than one part: 81, 72, 63, 621, 54, 531, 432. Next, form (part 1) - (part 2) for each of those partitions, getting 7, 5, 3, 4, 1, 2, 1; finally, note that the numbers of occurrences of 1,2,3,4,5,6,7, respectively, are 2,1,1,1,1,0,1.
MATHEMATICA
z = 25; d[n_] := d[n] = Rest[Select[IntegerPartitions[n], DeleteDuplicates[#] == # &]]; t[n_] := t[n] = Table[d[n][[k, 1]] - d[n][[k, 2]], {k, 1, -1 + PartitionsQ[n]}]; u = Table[Count[t[n], j], {n, 3, z}, {j, 1, n - 2}]; TableForm[u] (* A239302 as an array *)
v = Flatten[u] (* A239302 as a sequence *)
CROSSREFS
Sequence in context: A087116 A033264 A258045 * A256983 A330720 A080234
KEYWORD
nonn,tabl,easy
AUTHOR
Clark Kimberling, Mar 14 2014
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:42 EDT 2024. Contains 371905 sequences. (Running on oeis4.)