This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A365071 #14 Dec 13 2024 09:37:29 %S A365071 0,1,2,3,6,9,15,23,40,55,94,132,210,298,476,644,1038,1406,2149,2965, %T A365071 4584,6077,9426,12648,19067,25739,38958,51514,78459,104265,155436, %U A365071 208329,312791,411886,620780,823785,1224414,1631815,2437015,3217077,4822991 %N A365071 Number of subsets of {1..n} containing n such that no element is a sum of distinct other elements. A variation of non-binary sum-free subsets without re-usable elements. %C A365071 The complement is counted by A365069. The binary version is A364755, complement A364756. For re-usable parts we have A288728, complement A365070. %H A365071 Andrew Howroyd, <a href="/A365071/b365071.txt">Table of n, a(n) for n = 0..85</a> %H A365071 Steven R. Finch, <a href="/A066062/a066062.pdf">Monoids of natural numbers</a>, March 17, 2009. %F A365071 a(n) + A365069(n) = 2^(n-1). %F A365071 First differences of A151897. %e A365071 The subset {1,3,4,6} has 4 = 1 + 3 so is not counted under a(6). %e A365071 The subset {2,3,4,5,6} has 6 = 2 + 4 and 4 = 1 + 3 so is not counted under a(6). %e A365071 The a(0) = 0 through a(6) = 15 subsets: %e A365071 . {1} {2} {3} {4} {5} {6} %e A365071 {1,2} {1,3} {1,4} {1,5} {1,6} %e A365071 {2,3} {2,4} {2,5} {2,6} %e A365071 {3,4} {3,5} {3,6} %e A365071 {1,2,4} {4,5} {4,6} %e A365071 {2,3,4} {1,2,5} {5,6} %e A365071 {1,3,5} {1,2,6} %e A365071 {2,4,5} {1,3,6} %e A365071 {3,4,5} {1,4,6} %e A365071 {2,3,6} %e A365071 {2,5,6} %e A365071 {3,4,6} %e A365071 {3,5,6} %e A365071 {4,5,6} %e A365071 {3,4,5,6} %t A365071 Table[Length[Select[Subsets[Range[n]], MemberQ[#,n]&&Intersection[#, Total/@Subsets[#,{2,Length[#]}]]=={}&]], {n,0,10}] %Y A365071 First differences of A151897. %Y A365071 The version with re-usable parts is A288728 first differences of A007865. %Y A365071 The binary version is A364755, first differences of A085489. %Y A365071 The binary complement is A364756, first differences of A088809. %Y A365071 The complement is counted by A365069, first differences of A364534. %Y A365071 The complement w/ re-usable parts is A365070, first differences of A093971. %Y A365071 A108917 counts knapsack partitions, strict A275972. %Y A365071 A124506 counts combination-free subsets, differences of A326083. %Y A365071 A364350 counts combination-free strict partitions, complement A364839. %Y A365071 A365046 counts combination-full subsets, differences of A364914. %Y A365071 Partitions: A236912, A237113, A237668, A364532, A364272, A364349, A364913. %Y A365071 Cf. A050291, A095944, A103580, A324741, A326080, A326117, A341507, A364533. %K A365071 nonn %O A365071 0,3 %A A365071 _Gus Wiseman_, Aug 26 2023 %E A365071 a(14) onwards added (using A151897) by _Andrew Howroyd_, Jan 13 2024