OFFSET
1,2
COMMENTS
LINKS
Pontus von Brömssen, Table of n, a(n) for n = 1..10000
Michael S. Branicky, Python Program for OEIS A380998
FORMULA
a(n) >= a(n-1)-1.
EXAMPLE
For n = 7, no two subsets of the 8 numbers 7..14 have the same product, but for the 9 numbers 7..15 the two subsets {8, 15} and {10, 12} have the same product (120), so a(7) = 8.
For n = 14, no two subsets of the 7 numbers 14..20 have the same product, but for the 8 numbers 14..21 the two subsets {14, 18, 20} and {15, 16, 21} have the same product (5040), so a(14) = 7.
PROG
(Python) # see linked program
CROSSREFS
KEYWORD
nonn
AUTHOR
Pontus von Brömssen, Feb 11 2025
STATUS
approved
