A327476 Heinz numbers of integer partitions whose mean A326567/A326568 is not a part.
1, 6, 10, 12, 14, 15, 18, 20, 21, 22, 24, 26, 28, 33, 34, 35, 36, 38, 39, 40, 42, 44, 45, 46, 48, 50, 51, 52, 54, 55, 56, 57, 58, 60, 62, 63, 65, 66, 68, 69, 70, 72, 74, 75, 76, 77, 78, 80, 82, 85, 86, 87, 88, 91, 92, 93, 94, 95, 96, 98, 99, 100, 102, 104, 106
Offset: 1
Keywords
Examples
The sequence of terms together with their prime indices begins: 1: {} 6: {1,2} 10: {1,3} 12: {1,1,2} 14: {1,4} 15: {2,3} 18: {1,2,2} 20: {1,1,3} 21: {2,4} 22: {1,5} 24: {1,1,1,2} 26: {1,6} 28: {1,1,4} 33: {2,5} 34: {1,7} 35: {3,4} 36: {1,1,2,2} 38: {1,8} 39: {2,6} 40: {1,1,1,3}
Crossrefs
Programs
-
Mathematica
primeMS[n_]:=If[n==1,{},Flatten[Cases[FactorInteger[n],{p_,k_}:>Table[PrimePi[p],{k}]]]]; Select[Range[100],!MemberQ[primeMS[#],Mean[primeMS[#]]]&]
Comments