OFFSET
0,5
COMMENTS
A set is product-free if it contains no product of two (not necessarily distinct) elements.
Also the number of maximal quotient-free subsets of {1..n}.
LINKS
Fausto A. C. Cariboni, Table of n, a(n) for n = 0..85
Andrew Howroyd, PARI Program
EXAMPLE
The a(2) = 1 through a(10) = 6 subsets (A = 10):
{2} {23} {23} {235} {235} {2357} {23578} {23578} {23578}
{34} {345} {256} {2567} {25678} {256789} {2378A}
{3456} {34567} {345678} {345678} {256789}
{456789} {26789A}
{345678A}
{456789A}
MATHEMATICA
fasmax[y_]:=Complement[y, Union@@(Most[Subsets[#]]&/@y)];
Table[Length[fasmax[Select[Subsets[Range[n]], Intersection[#, Times@@@Tuples[#, 2]]=={}&]]], {n, 0, 10}]
PROG
(PARI) \\ See link for program file.
for(n=0, 30, print1(A326496(n), ", ")) \\ Andrew Howroyd, Aug 30 2019
CROSSREFS
KEYWORD
nonn
AUTHOR
Gus Wiseman, Jul 09 2019
EXTENSIONS
a(18)-a(55) from Andrew Howroyd, Aug 30 2019
STATUS
approved