cp's OEIS Frontend

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.

A308251 Number of subsets of {1,...,n + 1} containing n + 1 and such that all positive differences of distinct elements are distinct.

This page as a plain text file.
%I A308251 #14 Oct 07 2020 10:32:08
%S A308251 1,2,3,6,9,14,21,34,49,76,101,146,205,294,397,560,747,1028,1341,1810,
%T A308251 2343,3178,4051,5370,6921,9014,11361,14838,18719,24082,29953,38220,
%U A308251 47663,60550,74619,93848,115961,145320,177549,221676,270335,335124
%N A308251 Number of subsets of {1,...,n + 1} containing n + 1 and such that all positive  differences of distinct elements are distinct.
%C A308251 Also the number of subsets of {1...n} containing no positive differences of the elements and such that all such differences are distinct.
%H A308251 Fausto A. C. Cariboni, <a href="/A308251/b308251.txt">Table of n, a(n) for n = 0..99</a> (terms 0..41 from Gus Wiseman, terms 42..80 from Vaclav Kotesovec)
%F A308251 First differences of A143823. Partial sums of A169942.
%e A308251 The a(0) = 1 through a(5) = 14 subsets:
%e A308251   {1}  {2}    {3}    {4}      {5}      {6}
%e A308251        {1,2}  {1,3}  {1,4}    {1,5}    {1,6}
%e A308251               {2,3}  {2,4}    {2,5}    {2,6}
%e A308251                      {3,4}    {3,5}    {3,6}
%e A308251                      {1,2,4}  {4,5}    {4,6}
%e A308251                      {1,3,4}  {1,2,5}  {5,6}
%e A308251                               {1,4,5}  {1,2,6}
%e A308251                               {2,3,5}  {1,3,6}
%e A308251                               {2,4,5}  {1,4,6}
%e A308251                                        {1,5,6}
%e A308251                                        {2,3,6}
%e A308251                                        {2,5,6}
%e A308251                                        {3,4,6}
%e A308251                                        {3,5,6}
%t A308251 Table[Length[Select[Subsets[Range[n]],MemberQ[#,n]&&UnsameQ@@Abs[Subtract@@@Subsets[#,{2}]]&]],{n,15}]
%Y A308251 Cf. A000079, A108917, A143823, A143824, A169942, A325676, A325677, A325683, A325687.
%K A308251 nonn
%O A308251 0,2
%A A308251 _Gus Wiseman_, May 17 2019