OFFSET
0,2
COMMENTS
Also subsets of {1..n} such that every orderless pair of (not necessarily distinct) elements has a different product.
LINKS
Fausto A. C. Cariboni, Table of n, a(n) for n = 0..50
EXAMPLE
The a(0) = 1 through a(4) = 14 subsets:
{} {} {} {} {}
{1} {1} {1} {1}
{2} {2} {2}
{12} {3} {3}
{12} {4}
{13} {12}
{23} {13}
{123} {14}
{23}
{24}
{34}
{123}
{134}
{234}
MATHEMATICA
Table[Length[Select[Subsets[Range[n]], UnsameQ@@Divide@@@Subsets[#, {2}]&]], {n, 0, 20}]
CROSSREFS
The subset case is A325860.
The maximal case is A325861.
The integer partition case is A325853.
The strict integer partition case is A325854.
Heinz numbers of the counterexamples are given by A325994.
KEYWORD
nonn
AUTHOR
Gus Wiseman, May 31 2019
EXTENSIONS
a(21)-a(25) from Alois P. Heinz, Jun 07 2019
a(26)-a(35) from Fausto A. C. Cariboni, Oct 04 2020
STATUS
approved