OFFSET
1,2
COMMENTS
Conjecture: a(n) is the size of a table of correspondence between the divisors of certain numbers and the partitions of n. The table contains A006128(n) positive integers and the rest are zeros (or empty cells). These positive integers can be interpreted in two ways as follows:
1) They are all divisors of all terms of the first n rows of triangle A336811. In other words: they are all divisors of the first A000070(n-1) terms of A336811, hence they are all divisors of all terms in the n-th row of A176206.
2) They are all parts of all partitions of n.
The mentioned divisors are in the columns of the table.
The mentioned partitions are in the rows of the table.
For more information about the main conjecture see A336811.
EXAMPLE
Illustration of initial terms:
A000070: 1 2 4 7 12 19 30
A000041 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
1 |_| | | | | | |
2 |_ _| | | | | |
3 |_ _ _ _| | | | |
| | | | |
5 |_ _ _ _ _ _ _| | | |
| | | |
7 |_ _ _ _ _ _ _ _ _ _ _ _| | |
| | |
| | |
| | |
11 |_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _| |
| |
| |
| |
15 |_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _|
...
a(n) is the area (or the number of cells) in the n-th rectangle of the diagram.
For n = 3 the third rectangle of the diagram contains 3*4 = 12 cells, so a(3) = 12
For n = 7 the seventh rectangle of the diagram contains 15*30 = 450 cells, so a(7) = 450.
MATHEMATICA
a[n_] := PartitionsP[n]*Count[Flatten[IntegerPartitions[n]], 1]; Table[a[n], {n, 1, 36}] (* Robert P. P. McKone, Jan 28 2021 *)
PROG
(PARI) a(n) = numbpart(n)*sum(k=0, n-1, numbpart(k)); \\ Michel Marcus, Jan 28 2021
CROSSREFS
KEYWORD
nonn
AUTHOR
Omar E. Pol, Jan 10 2021
STATUS
approved