OFFSET
1,3
COMMENTS
Every term of the sequence is coprime to every other term.
LINKS
Max Alekseyev, Table of n, a(n) for n = 1..30
EXAMPLE
By partitioning (a(1),a(2),...a(7)) = (1,1,2,3,5,11,37) into {b(k)} and {c(k)} so that {b(k)} = (1,2,5,11) and {c(k)} = (1,3,37), then (product of b(k)'s + product of c(k)'s) is minimized. Therefore a(8) = 1*2*5*11 + 1*3*37 = 221.
MATHEMATICA
Nest[ Module[ {prod=Times@@#1}, Append[ #, Min[ #+prod/#&/@Times@@@Union[ Subsets[ # ] ] ] ] ]&, {1, 1, 2, 3}, 11 ] (Peter Pein (petsie(AT)dordos.net), Jan 07 2007)
CROSSREFS
KEYWORD
nonn
AUTHOR
Leroy Quet, Jan 07 2007
EXTENSIONS
a(10)-a(15) from Peter Pein (petsie(AT)dordos.net), Jan 07 2007
a(16)-a(30) from Max Alekseyev, Apr 08 2022
STATUS
approved