OFFSET
1,2
COMMENTS
The sequence is the solution to Problem 9 of 2022 Chinese Team Selection Test. - Yifan Xie, Jun 27 2025
LINKS
Yifan Xie, Table of n, a(n) for n = 1..10000
Yifan Xie, On a solvable minimal sum antichain problem
FORMULA
a(n) ~ c*n^2, where c = (3/2)*(Sum_{k=0..oo} 1/A027649(k))^(-1) = 1.108410...
EXAMPLE
For n <= 6, the construction is given by the n smallest primes.
For n = 7, the numbers 4, 5, 6, 7, 9, 11, 13 are mutually indivisible and their sum is a(7) = 55.
PROG
(PARI) A027649(n) = 2*3^n-2^n;
A383622(nn) = {my(v=[]); for(n=0, logint(nn, 3), d = A027649(n); m = floor(nn/d); for(i=0, floor(m/6), if(6*i+1 <= m, v=concat(v, d*(6*i+1))); if(6*i+5 <= m, v=concat(v, d*(6*i+5))))); v=vecsort(v); v};
lista(nn) = {u = A383622(3*nn); my(v=vector(nn)); s=0; for(n=1, nn, s = s + u[n]; v[n] = s); v};
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Yifan Xie, May 10 2025
STATUS
approved
