A350837 Number of integer partitions of n with no adjacent parts of quotient 2.
1, 1, 2, 2, 4, 5, 7, 10, 14, 18, 24, 31, 41, 53, 70, 87, 112, 140, 178, 221, 277, 344, 428, 526, 648, 792, 971, 1180, 1436, 1738, 2103, 2533, 3049, 3660, 4387, 5242, 6259, 7450, 8860, 10511, 12453, 14723, 17387, 20489, 24121, 28343, 33269, 38982, 45632, 53327
Offset: 0
Keywords
Examples
The a(1) = 1 through a(7) = 10 partitions: (1) (2) (3) (4) (5) (6) (7) (11) (111) (22) (32) (33) (43) (31) (41) (51) (52) (1111) (311) (222) (61) (11111) (411) (322) (3111) (331) (111111) (511) (4111) (31111) (1111111)
Links
Crossrefs
Programs
-
Mathematica
Table[Length[Select[IntegerPartitions[n], FreeQ[Divide@@@Partition[#,2,1],2]&]],{n,0,15}]
Comments