A356236 Number of integer partitions of n with a neighborless part.
0, 1, 2, 2, 4, 4, 8, 9, 16, 20, 31, 40, 59, 76, 105, 138, 184, 238, 311, 400, 515, 656, 831, 1052, 1322, 1659, 2064, 2572, 3182, 3934, 4837, 5942, 7264, 8872, 10789, 13109, 15865, 19174, 23105, 27796, 33361, 39956, 47766, 56985, 67871, 80675, 95750, 113416
Offset: 0
Keywords
Examples
The a(1) = 1 through a(8) = 9 partitions: (1) (2) (3) (4) (5) (6) (7) (11) (111) (22) (41) (33) (52) (31) (311) (42) (61) (1111) (11111) (51) (331) (222) (421) (411) (511) (3111) (4111) (111111) (31111) (1111111)
Crossrefs
These partitions are ranked by the complement of A356736.
Programs
-
Mathematica
Table[Length[Select[IntegerPartitions[n],Function[ptn,Or@@Table[!MemberQ[ptn,x-1]&&!MemberQ[ptn,x+1],{x,Union[ptn]}]]]],{n,0,30}]
Comments