A325620 Number of integer partitions of n whose reciprocal factorial sum is an integer.
1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 4, 5, 5, 5, 6, 7, 7, 8, 9, 10, 10, 11, 12, 14, 14, 15, 16, 18, 19, 20, 22, 24, 25, 26, 28, 31, 33, 34, 36, 39, 41, 43, 45, 49, 52, 54, 57, 61, 65, 68, 71, 76, 80, 84, 88, 93, 98, 103, 107, 113
Offset: 1
Examples
The initial terms count the following partitions: 1: (1) 2: (1,1) 3: (1,1,1) 4: (2,2) 4: (1,1,1,1) 5: (2,2,1) 5: (1,1,1,1,1) 6: (2,2,1,1) 6: (1,1,1,1,1,1) 7: (2,2,1,1,1) 7: (1,1,1,1,1,1,1) 8: (2,2,2,2) 8: (2,2,1,1,1,1) 8: (1,1,1,1,1,1,1,1) 9: (2,2,2,2,1) 9: (2,2,1,1,1,1,1) 9: (1,1,1,1,1,1,1,1,1)
Crossrefs
Programs
-
Mathematica
Table[Length[Select[IntegerPartitions[n],IntegerQ[Total[1/(#!)]]&]],{n,30}]
Comments