Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
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!)
A307847 Square array A(n,k), n >= 0, k >= 0, read by antidiagonals, where column k is the expansion of 1/sqrt(1 - 2*x + (1-4*k^2)*x^2). 5
1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 9, 7, 1, 1, 1, 19, 25, 19, 1, 1, 1, 33, 55, 145, 51, 1, 1, 1, 51, 97, 595, 561, 141, 1, 1, 1, 73, 151, 1729, 2611, 2841, 393, 1, 1, 1, 99, 217, 4051, 8001, 22141, 12489, 1107, 1, 1, 1, 129, 295, 8209, 19251, 105441, 119449, 60705, 3139, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,9
LINKS
FORMULA
A(n,k) is the constant term in the expansion of (k/x + 1 + k*x)^n.
A(n,k) is the coefficient of x^n in the expansion of (1 + x + (k*x)^2)^n.
A(n,k) = Sum_{j=0..n} (1-2*k)^(n-j) * k^j * binomial(n,j) * binomial(2*j,j).
A(n,k) = Sum_{j=0..n} (1+2*k)^(n-j) * (-k)^j * binomial(n,j) * binomial(2*j,j).
A(n,k) = Sum_{j=0..floor(n/2)} k^(2*j) * binomial(n,2*j) * binomial(2*j,j).
n * A(n,k) = (2*n-1) * A(n-1,k) - (1-4*k^2) * (n-1) * A(n-2,k).
EXAMPLE
Square array begins:
1, 1, 1, 1, 1, 1, ...
1, 1, 1, 1, 1, 1, ...
1, 3, 9, 19, 33, 51, ...
1, 7, 25, 55, 97, 151, ...
1, 19, 145, 595, 1729, 4051, ...
1, 51, 561, 2611, 8001, 19251, ...
1, 141, 2841, 22141, 105441, 369501, ...
1, 393, 12489, 119449, 627873, 2319801, ...
MATHEMATICA
T[n_, k_] := Sum[If[k == j == 0, 1, k^(2*j)] * Binomial[n, 2*j] * Binomial[2*j, j], {j, 0, Floor[n/2]}]; Table[T[k, n - k], {n, 0, 10}, {k, 0, n}] // Flatten (* Amiram Eldar, May 13 2021 *)
CROSSREFS
Columns k=0..2 give A000012, A002426, A084605.
Main diagonal gives A307844.
Sequence in context: A243748 A340149 A340075 * A080214 A263383 A185620
KEYWORD
nonn,tabl
AUTHOR
Seiichi Manyama, May 01 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 August 18 15:26 EDT 2024. Contains 375269 sequences. (Running on oeis4.)