|
|
A005254
|
|
Number of weighted voting procedures.
(Formerly M2779 M2780)
|
|
3
|
|
|
1, 3, 9, 21, 51, 117, 271, 607, 1363, 3013, 6643, 14491, 31495, 67965, 146115, 312483, 666015, 1413915, 2992815, 6315135, 13292007, 27906585, 58464339, 122229123, 255072423, 531369483, 1105217223, 2295383319, 4760727375
(list;
graph;
refs;
listen;
history;
text;
internal format)
|
|
|
OFFSET
|
1,2
|
|
REFERENCES
|
M. Klamkin, ed., Problems in Applied Mathematics: Selections from SIAM Review, SIAM, 1990; see pp. 122-123.
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.
T. V. Narayana, Lattice Path Combinatorics with Statistical Applications. Univ. Toronto Press, 1979, pp. 100-101.
N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
Solution to Board of Directors Problem, J. Rec. Math., 9 (No. 3, 1977), 240.
|
|
LINKS
|
|
|
MATHEMATICA
|
a[1, 1] = 1; a[n_, 1] := a[n, 1] = a[n - 1, Floor[(n + 1)/2]]; a[n_, k_ /; k > 1] := a[n, k] = a[n, 1] + a[n - 1, k - 1]; A005254 = Table[ Sum[ a[n, k], {k, 1, n}], {n, 1, 29}] (* Jean-François Alcover, Apr 03 2012, after recurrence of A037254 *)
|
|
PROG
|
(Haskell)
|
|
CROSSREFS
|
|
|
KEYWORD
|
nonn,nice,easy
|
|
AUTHOR
|
|
|
EXTENSIONS
|
|
|
STATUS
|
approved
|
|
|
|