The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A350770 Triangle read by rows: T(n, k) = 2^(n-k-1) + 2^k - 2, 0 <= k <= n-1. 2
0, 1, 1, 3, 2, 3, 7, 4, 4, 7, 15, 8, 6, 8, 15, 31, 16, 10, 10, 16, 31, 63, 32, 18, 14, 18, 32, 63, 127, 64, 34, 22, 22, 34, 64, 127, 255, 128, 66, 38, 30, 38, 66, 128, 255, 511, 256, 130, 70, 46, 46, 70, 130, 256, 511, 1023, 512, 258, 134, 78, 62, 78, 134, 258, 512, 1023, 2047, 1024, 514, 262, 142, 94, 94, 142, 262, 514, 1024, 2047 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,4
COMMENTS
T(n, k) is the number of player-reduced static games within an n-player two-strategy game scenario in which one player (the "standpoint") faces a specific combination of other players' individual strategies without the possibility of anti-coordination between them -- the total number of such combinations is 2^(n-1). The value of k represents the number of other players who (are expected to) agree on one of the two strategies in S, while the other n-k-1 choose the other strategy; the standpoint player is not included.
The sum of the products of T(n, k) and binomial(n-1,k) for 0 <= k <= n-1 equals 2*A001047(n-1). For instance, for n = 3, T(3, k) returns 3, 2, and 3 and binomial(3-1,k) returns 1, 2, and 1 for k = 0, 1, and 2, respectively. Then 3*1 + 2*2 + 3*1 = 2*A001047(3-1) = 2*5 = 10. Similarly, for n = 4, the result yields 7*1 + 4*3 + 4*3 + 7*1 = 2*A001047(4-1) = 2*19 = 38.
LINKS
Andrew Howroyd, Table of n, a(n) for n = 1..1275 (rows 1..50).
Ambrosio Valencia-Romero, Strategy Dynamics in Collective Systems Design, Ph.D. Thesis, Stevens Institute of Technology (Hoboken, 2021). [Table 5.4, page 67]
Ambrosio Valencia-Romero and P. T. Grogan, The strategy dynamics of collective systems: Underlying hindrances beyond two-actor coordination, PLOS ONE 19(4): e0301394 (S1 Appendix).
FORMULA
T(n, k) = 2^(n-k-1) + 2^k - 2.
EXAMPLE
Triangle begins:
0;
1, 1;
3, 2, 3;
7, 4, 4, 7;
15, 8, 6, 8, 15;
31, 16, 10, 10, 16, 31;
63, 32, 18, 14, 18, 32, 63;
127, 64, 34, 22, 22, 34, 64, 127;
255, 128, 66, 38, 30, 38, 66, 128, 255;
511, 256, 130, 70, 46, 46, 70, 130, 256, 511;
1023, 512, 258, 134, 78, 62, 78, 134, 258, 512, 1023;
2047, 1024, 514, 262, 142, 94, 94, 142, 262, 514, 1024, 2047;
...
MAPLE
T := n -> seq(2^(n - k - 1) + 2^k - 2, k = 0 .. n - 1);
seq(T(n), n=1..12);
PROG
(PARI) T(n, k) = 2^(n-k-1) + 2^k - 2 \\ Andrew Howroyd, May 06 2023
CROSSREFS
Column k=0 gives A000225(n-1).
Row sums give A145654.
Cf. A001047.
Sequence in context: A368155 A136389 A338032 * A332057 A275330 A141863
KEYWORD
nonn,easy,tabl
AUTHOR
STATUS
approved

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 May 29 05:33 EDT 2024. Contains 372921 sequences. (Running on oeis4.)