A151897 Number of subsets of {1, 2, ..., n} such that no member is a sum of distinct other members.
1, 2, 4, 7, 13, 22, 37, 60, 100, 155, 249, 381, 591, 889, 1365, 2009, 3047, 4453, 6602, 9567, 14151, 20228, 29654, 42302, 61369, 87108, 126066, 177580, 256039, 360304, 515740, 724069, 1036860, 1448746, 2069526, 2893311, 4117725, 5749540, 8186555
Offset: 0
Keywords
Examples
a(4) = 13, including all subsets of {1, 2, 3, 4} except {1, 2, 3} (excluded because 1+2 = 3), {1, 3, 4} (excluded because 1+3 = 4), and {1, 2, 3, 4} (excluded for both reasons.) From _Gus Wiseman_, Jun 07 2019: (Start) The a(0) = 1 through a(4) = 13 subsets: {} {} {} {} {} {1} {1} {1} {1} {2} {2} {2} {1,2} {3} {3} {1,2} {4} {1,3} {1,2} {2,3} {1,3} {1,4} {2,3} {2,4} {3,4} {1,2,4} {2,3,4} (End)
Links
- Fausto A. C. Cariboni, Table of n, a(n) for n = 0..85
Programs
-
Mathematica
Table[Length[Select[Subsets[Range[n]],Intersection[#,Plus@@@Subsets[#,{2,Length[#]}]]=={}&]],{n,0,10}] (* Gus Wiseman, Jun 07 2019 *)
Extensions
a(0) = 1 prepended by Gus Wiseman, Jun 07 2019
Comments