A370585 Number of maximal subsets of {1..n} such that it is possible to choose a different prime factor of each element.
1, 1, 1, 1, 2, 2, 5, 5, 7, 11, 25, 25, 38, 38, 84, 150, 178, 178, 235, 235, 341, 579, 1235, 1235, 1523, 1968, 4160, 4824, 6840, 6840, 9140, 9140, 10028, 16264, 33956, 48680, 56000, 56000, 116472, 186724, 223884, 223884, 290312, 290312, 403484, 484028, 1001420
Offset: 0
Keywords
Examples
The a(0) = 1 through a(8) = 7 subsets: {} {} {2} {2,3} {2,3} {2,3,5} {2,3,5} {2,3,5,7} {2,3,5,7} {3,4} {3,4,5} {2,5,6} {2,5,6,7} {2,5,6,7} {3,4,5} {3,4,5,7} {3,4,5,7} {3,5,6} {3,5,6,7} {3,5,6,7} {4,5,6} {4,5,6,7} {3,5,7,8} {4,5,6,7} {5,6,7,8}
Crossrefs
Programs
-
Mathematica
Table[Length[Select[Subsets[Range[n], {PrimePi[n]}],Length[Select[Tuples[If[#==1, {},First/@FactorInteger[#]]&/@#], UnsameQ@@#&]]>0&]],{n,0,10}]
Extensions
More terms from Jinyuan Wang, Feb 14 2025
Comments