A322900 Number of integer partitions of n whose parts are all proper powers of the same number.
1, 1, 2, 2, 3, 2, 5, 2, 5, 3, 7, 2, 11, 2, 9, 5, 11, 2, 16, 2, 18, 6, 17, 2, 27, 3, 23, 6, 30, 2, 38, 2, 37, 8, 39, 5, 58, 2, 49, 10, 66, 2, 74, 2, 78, 14, 77, 2, 109, 3, 100, 12, 118, 2, 131, 6, 146, 15, 143, 2, 190, 2, 169, 20, 203, 6, 224, 2, 242, 18, 248
Offset: 0
Keywords
Examples
The a(1) = 1 through a(14) = 9 integer partitions (A = 10, B = 11, C = 12, D = 13, E = 14): (1) (2) (3) (4) (5) (6) (7) (8) (9) (11) (111) (22) (11111) (33) (1111111) (44) (333) (1111) (42) (422) (111111111) (222) (2222) (111111) (11111111) . (A) (B) (C) (D) (E) (55) (11111111111) (66) (1111111111111) (77) (82) (84) (842) (442) (93) (4442) (4222) (444) (8222) (22222) (822) (44222) (1111111111) (3333) (422222) (4422) (2222222) (42222) (11111111111111) (222222) (111111111111)
Crossrefs
Programs
-
Mathematica
radbase[n_]:=n^(1/GCD@@FactorInteger[n][[All,2]]); Table[Length[Select[IntegerPartitions[n],SameQ@@radbase/@#&]],{n,30}]
Comments