A364671
Number of subsets of {1..n} containing all of their own first differences.
Original entry on oeis.org
1, 2, 4, 6, 10, 14, 23, 34, 58, 96, 171, 302, 565, 1041, 1969, 3719, 7105, 13544, 25999, 49852, 95949, 184658, 356129, 687068, 1327540, 2566295, 4966449, 9617306, 18640098, 36150918, 70166056, 136272548, 264844111, 515036040, 1002211421, 1951345157, 3801569113
Offset: 0
The subset {1,2,4,5,10,14} has differences (1,2,1,5,4) so is counted under a(14).
The a(0) = 1 through a(5) = 14 subsets:
{} {} {} {} {} {}
{1} {1} {1} {1} {1}
{2} {2} {2} {2}
{1,2} {3} {3} {3}
{1,2} {4} {4}
{1,2,3} {1,2} {5}
{2,4} {1,2}
{1,2,3} {2,4}
{1,2,4} {1,2,3}
{1,2,3,4} {1,2,4}
{1,2,3,4}
{1,2,3,5}
{1,2,4,5}
{1,2,3,4,5}
For differences of all strict pairs we have
A054519, for partitions
A007862.
For "disjoint" instead of "subset" we have
A364463, partitions
A363260.
-
Table[Length[Select[Subsets[Range[n]], SubsetQ[#,Differences[#]]&]], {n,0,10}]
A364672
Number of subsets of {1..n} not containing all of their own first differences.
Original entry on oeis.org
0, 0, 0, 2, 6, 18, 41, 94, 198, 416, 853, 1746, 3531, 7151, 14415, 29049, 58431, 117528, 236145, 474436, 952627, 1912494, 3838175, 7701540, 15449676, 30988137, 62142415, 124600422, 249795358, 500719994, 1003575768, 2011211100, 4030123185, 8074898552, 16177657763, 32408393211, 64917907623
Offset: 0
The a(0) = 0 through a(5) = 18 subsets:
. . . {1,3} {1,3} {1,3}
{2,3} {1,4} {1,4}
{2,3} {1,5}
{3,4} {2,3}
{1,3,4} {2,5}
{2,3,4} {3,4}
{3,5}
{4,5}
{1,2,5}
{1,3,4}
{1,3,5}
{1,4,5}
{2,3,4}
{2,3,5}
{2,4,5}
{3,4,5}
{1,3,4,5}
{2,3,4,5}
For disjunction instead of containment we have
A364463, partitions
A363260.
-
Table[Length[Select[Subsets[Range[n]],!SubsetQ[#,Differences[#]]&]],{n,0,10}]
A364752
Number of subsets of {1..n} containing n and all first differences.
Original entry on oeis.org
1, 1, 2, 2, 4, 4, 9, 11, 24, 38, 75, 131, 263, 476, 928, 1750, 3386, 6439, 12455, 23853, 46097, 88709, 171471, 330939, 640472, 1238755, 2400154, 4650857, 9022792, 17510820, 34015138, 66106492, 128571563, 250191929, 487175381, 949133736, 1850223956, 3608650389
Offset: 0
The a(1) = 1 through a(6) = 9 subsets:
{1} {2} {3} {4} {5} {6}
{1,2} {1,2,3} {2,4} {1,2,3,5} {3,6}
{1,2,4} {1,2,4,5} {2,4,6}
{1,2,3,4} {1,2,3,4,5} {1,2,3,6}
{1,2,4,6}
{1,2,3,4,6}
{1,2,3,5,6}
{1,2,4,5,6}
{1,2,3,4,5,6}
The complement is counted by
A364753.
A054519 counts subsets containing differences,
A326083 containing sums.
-
Table[If[n==0,1,Length[Select[Subsets[Range[n]], MemberQ[#,n]&&SubsetQ[#,Differences[#]]&]]],{n,0,10}]
Showing 1-3 of 3 results.