|
| |
|
|
A163775
|
|
Row sums of triangle A163772.
|
|
1
| |
|
|
1, 11, 73, 403, 2021, 9567, 43611, 193683, 844213, 3629083, 15437951, 65143503, 273148279, 1139548469, 4734740493, 19606960755, 80969809797, 333601494651
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 0,2
|
|
|
COMMENTS
| a(n) = sum{k=0..n} sum{i=k..n} (-1)^(n-i)*binomial(n-k,n-i)*(2i+1)$
where i$ denotes the swinging factorial of i (A056040).
|
|
|
REFERENCES
| Peter Luschny, "Divide, swing and conquer the factorial and the lcm{1,2,...,n}", preprint, April 2008.
|
|
|
LINKS
| Peter Luschny, Swinging Factorial.
|
|
|
MAPLE
| swing := proc(n) option remember; if n = 0 then 1 elif
irem(n, 2) = 1 then swing(n-1)*n else 4*swing(n-1)/n fi end:
a := proc(n) local i, k; add(add((-1)^(n-i)*binomial(n-k, n-i)*swing(2*i+1), i=k..n), k=0..n) end:
|
|
|
CROSSREFS
| Cf. A163772.
Sequence in context: A197308 A142015 A123039 * A092244 A155634 A003367
Adjacent sequences: A163772 A163773 A163774 * A163776 A163777 A163778
|
|
|
KEYWORD
| nonn
|
|
|
AUTHOR
| Peter Luschny (peter(AT)luschny.de), Aug 05 2009
|
| |
|
|