A350845 Heinz numbers of integer partitions with at least two adjacent parts of quotient 2.
6, 12, 18, 21, 24, 30, 36, 42, 48, 54, 60, 63, 65, 66, 72, 78, 84, 90, 96, 102, 108, 114, 120, 126, 130, 132, 133, 138, 144, 147, 150, 156, 162, 168, 174, 180, 186, 189, 192, 195, 198, 204, 210, 216, 222, 228, 231, 234, 240, 246, 252, 258, 260, 264, 266, 270
Offset: 1
Keywords
Examples
The terms and corresponding partitions begin: 6: (2,1) 12: (2,1,1) 18: (2,2,1) 21: (4,2) 24: (2,1,1,1) 30: (3,2,1) 36: (2,2,1,1) 42: (4,2,1) 48: (2,1,1,1,1) 54: (2,2,2,1) 60: (3,2,1,1) 63: (4,2,2) 65: (6,3) 66: (5,2,1) 72: (2,2,1,1,1) 78: (6,2,1) 84: (4,2,1,1) 90: (3,2,2,1) 96: (2,1,1,1,1,1)
Crossrefs
Programs
-
Mathematica
primeptn[n_]:=If[n==1,{},Reverse[Flatten[Cases[FactorInteger[n],{p_,k_}:>Table[PrimePi[p],{k}]]]]]; Select[Range[100],MemberQ[Divide@@@Partition[primeptn[#],2,1],2]&]
Comments