login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A005255 Atkinson-Negro-Santoro sequence: a(n+1) = 2*a(n) - a(n-floor(n/2+1)).
(Formerly M1076)
6

%I M1076 #38 Sep 03 2022 23:02:56

%S 0,1,2,4,7,13,24,46,88,172,337,667,1321,2629,5234,10444,20842,41638,

%T 83188,166288,332404,664636,1328935,2657533,5314399,10628131,21254941,

%U 42508561,85014493,170026357,340047480,680089726,1360169008,2720327572

%N Atkinson-Negro-Santoro sequence: a(n+1) = 2*a(n) - a(n-floor(n/2+1)).

%C For each n, the n-term sequence (b(k) = a(n) - a(n-k), 1 <= k <= n), has the property that all 2^n sums of subsets of the terms are distinct.

%C a(n) = A062178(n+1) - 1; see also A002083. - _Reinhard Zumkeller_, Nov 18 2012

%D S. R. Finch, Mathematical Constants, Cambridge, 2003, Section 2.28.

%D T. V. Narayana, Recent progress and unsolved problems in dominance theory, pp. 68-78 of Combinatorial mathematics (Canberra 1977), Lect. Notes Math. Vol. 686, 1978.

%D T. V. Narayana, Lattice Path Combinatorics with Statistical Applications. Univ. Toronto Press, 1979, pp. 100-101.

%D N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).

%H T. D. Noe, <a href="/A005255/b005255.txt">Table of n, a(n) for n=0..300</a>

%H M. D. Atkinson et al., <a href="http://dx.doi.org/10.1016/0012-365X(90)90112-U">Sums of lexicographically ordered sets</a>, Discrete Math., 80 (1990), 115-122.

%H W. F. Lunnon, <a href="http://dx.doi.org/10.1090/S0025-5718-1988-0917837-5">Integer sets with distinct subset-sums</a>, Math. Comp. 50 (1988), 297-320.

%H B. E. Wynne & N. J. A. Sloane, <a href="/A002083/a002083_1.pdf">Correspondence, 1976-84</a>

%H B. E. Wynne & T. V. Narayana, <a href="/A002083/a002083_2.pdf">Tournament configuration, weighted voting, and partitioned catalans</a>, Preprint.

%H Bayard Edmund Wynne, and T. V. Narayana, <a href="http://www.numdam.org/item?id=BURO_1981__36__75_0">Tournament configuration and weighted voting</a>, Cahiers du bureau universitaire de recherche opérationnelle, 36 (1981): 75-78.

%e For n = 4, the sequence b is 7-4,7-2,7-1,7-0 = 3,5,6,7, which has subset sums (grouped by number of terms) 0, 3,5,6,7, 8,9,10,11,12,13, 14,15,16,18, 21.

%t a[ 0 ] := 0; a[ 1 ] := 1; a[ n_ ] := 2*a[ n - 1 ] - a[(n - 1) - Floor[ (n - 1)/2 + 1 ] ]; For[ n = 1, n <= 100, n++, Print[ a[ n ] ] ];

%o (Haskell)

%o a005255 n = a005255_list !! (n-1)

%o a005255_list = scanl (+) 0 $ tail a002083_list

%o -- _Reinhard Zumkeller_, Nov 18 2012

%Y Cf. A002083, A005318, A062178.

%K nonn,easy,nice

%O 0,3

%A _N. J. A. Sloane_, _Simon Plouffe_

%E More terms from Winston C. Yang (winston(AT)cs.wisc.edu), Aug 26 2000

%E Edited by _Franklin T. Adams-Watters_, Apr 11 2009

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 18 09:47 EDT 2024. Contains 371779 sequences. (Running on oeis4.)