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!)
A205457 Symmetric matrix, by antidiagonals: C(max(2i,2j),min(2i,2j)), i>=0, j>=0. 1
1, 1, 1, 1, 1, 1, 1, 6, 6, 1, 1, 15, 1, 15, 1, 1, 28, 15, 15, 28, 1, 1, 45, 70, 1, 70, 45, 1, 1, 66, 210, 28, 28, 210, 66, 1, 1, 91, 495, 210, 1, 210, 495, 91, 1, 1, 120, 1001, 924, 45, 45, 924, 1001, 120, 1, 1, 153, 1820, 3003, 495, 1, 495, 3003, 1820, 153, 1, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,8
LINKS
FORMULA
G.f.: (S(x,y)+S(y,x))/(x*y)-x*y/(1-x*y)+1/(1-x)+1/(1-y)-1, where S(x,y)=((x^3-3*x^2)*y^3-x^2*y^2)/((x^2-2*x+1)*y^3+(-x^2-3)*y^2+(2*x+3)*y-1). - Vladimir Kruchinin, Oct 29 2020
EXAMPLE
Northwest corner:
1....6....15...28...45
6....1....15...70...210
15...15...1....28...210
28...70...28...1....45
45...210..210..45...1
MATHEMATICA
f[i_, j_] := Binomial[Max[2 i - 2, 2 j - 2], Min[2 i - 2, 2 j - 2]]
TableForm[Table[f[i, j], {i, 1, 10}, {j, 1, 10}]]
Flatten[Table[f[i, n + 1 - i], {n, 1, 14}, {i, 1, n}]]
PROG
(Maxima)
S(x, y):=((x^3-3*x^2)*y^3-x^2*y^2)/((x^2-2*x+1)*y^3+(-x^2-3)*y^2+(2*x+3)*y-1);
taylor((S(x, y)+S(y, x))/(x*y)-x*y/(1-x*y)+1/(1-x)+1/(1-y)-1, x, 0, 7, y, 0, 7); /* Vladimir Kruchinin, Oct 29 2020 */
CROSSREFS
Sequence in context: A341687 A046606 A172350 * A155868 A322622 A176565
KEYWORD
nonn,tabl
AUTHOR
Clark Kimberling, Jan 28 2012
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 17 12:26 EDT 2024. Contains 372600 sequences. (Running on oeis4.)