OFFSET
1,2
REFERENCES
Freddy Barrera, Bernardo Recamán, and Stan Wagon, Sums of triples with one pair relatively prime. American Mathematical Monthly, 127 (2020), no. 1, pp. 89-90.
EXAMPLE
1 and 2 are the first two terms of the sequence because they can't even be written as sums of three positive integers.
3 is the third term of the sequence because there is only one way to express it as a sum of three positive integers (1+1+1).
11 does not belong to the sequence because 11=2+3+6 (and gcd(2,3)=1, gcd(2,6)=2, and gcd(3,6)=3).
MATHEMATICA
Select[Range@210, Select[Flatten[Permutations/@IntegerPartitions[#, {3}], 1], GCD[#[[1]], #[[2]]]==1&&GCD[#[[1]], #[[3]]]>1&&GCD[#[[2]], #[[3]]]>1&]=={}&] (* Giorgos Kalogeropoulos, Sep 20 2021 *)
CROSSREFS
KEYWORD
nonn,fini,full
AUTHOR
José Hernández, Sep 20 2021
STATUS
approved