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!)
A306914 Square array A(n,k), n >= 0, k >= 1, read by antidiagonals, where column k is the expansion of g.f. 1/((1-x)^k+x^k). 11
1, 1, 0, 1, 2, 0, 1, 3, 2, 0, 1, 4, 6, 0, 0, 1, 5, 10, 9, -4, 0, 1, 6, 15, 20, 9, -8, 0, 1, 7, 21, 35, 34, 0, -8, 0, 1, 8, 28, 56, 70, 48, -27, 0, 0, 1, 9, 36, 84, 126, 125, 48, -81, 16, 0, 1, 10, 45, 120, 210, 252, 200, 0, -162, 32, 0 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,5
LINKS
FORMULA
A(n,k) = Sum_{j=0..floor(n/k)} (-1)^j * binomial(n+k-1,k*j+k-1).
A(n,2*k) = Sum_{i=0..n} Sum_{j=0..n-i} (-1)^j * binomial(i+k-1,k*j+k-1) * binomial(n-i+k-1,k*j+k-1). - Seiichi Manyama, Apr 07 2019
EXAMPLE
Square array begins:
1, 1, 1, 1, 1, 1, 1, 1, ...
0, 2, 3, 4, 5, 6, 7, 8, ...
0, 2, 6, 10, 15, 21, 28, 36, ...
0, 0, 9, 20, 35, 56, 84, 120, ...
0, -4, 9, 34, 70, 126, 210, 330, ...
0, -8, 0, 48, 125, 252, 462, 792, ...
0, -8, -27, 48, 200, 461, 924, 1716, ...
0, 0, -81, 0, 275, 780, 1715, 3432, ...
0, 16, -162, -164, 275, 1209, 2989, 6434, ...
MATHEMATICA
A[n_, k_] := SeriesCoefficient[1/((1-x)^k + x^k), {x, 0, n}];
Table[A[n-k+1, k], {n, 0, 11}, {k, n+1, 1, -1}] // Flatten (* Jean-François Alcover, Mar 20 2019 *)
CROSSREFS
Columns 1-9 give A000007, A099087, A057083, A099589(n+3), A289389(n+4), A306940, (-1)^n * A049018(n), A306941, A306942.
Sequence in context: A216220 A334892 A216235 * A317023 A319284 A338526
KEYWORD
sign,tabl,look
AUTHOR
Seiichi Manyama, Mar 16 2019
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 June 12 23:56 EDT 2024. Contains 373362 sequences. (Running on oeis4.)