A387116 Number of ways to choose a constant sequence of integer partitions, one of each prime index of n.
1, 1, 2, 1, 3, 0, 5, 1, 2, 0, 7, 0, 11, 0, 0, 1, 15, 0, 22, 0, 0, 0, 30, 0, 3, 0, 2, 0, 42, 0, 56, 1, 0, 0, 0, 0, 77, 0, 0, 0, 101, 0, 135, 0, 0, 0, 176, 0, 5, 0, 0, 0, 231, 0, 0, 0, 0, 0, 297, 0, 385, 0, 0, 1, 0, 0, 490, 0, 0, 0, 627, 0, 792, 0, 0, 0, 0, 0
Offset: 1
Examples
The a(49) = 5 choices: ((4),(4)) ((3,1),(3,1)) ((2,2),(2,2)) ((2,1,1),(2,1,1)) ((1,1,1,1),(1,1,1,1))
Crossrefs
For disjoint instead of constant we have A383706.
For distinct instead of constant we have A387110.
For strict partitions instead of partitions we have A387117.
A003963 multiplies together prime indices.
A120383 lists numbers divisible by all of their prime indices.
A289509 lists numbers with relatively prime prime indices.
Programs
-
Mathematica
Table[Switch[n,1,1,?PrimePowerQ,PartitionsP[PrimePi[FactorInteger[n][[1,1]]]],,0],{n,100}]
Comments