cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-3 of 3 results.

A361815 Expansion of 1/sqrt(1 - 4*x*(1-x)^2).

Original entry on oeis.org

1, 2, 2, -2, -14, -32, -30, 64, 346, 752, 584, -2044, -9486, -19324, -11368, 66180, 271658, 514916, 192584, -2151612, -7949736, -13933280, -1779028, 69933368, 235295106, 378579404, -61171228, -2267724644, -7003832456, -10248117752, 5236354188, 73288104568
Offset: 0

Views

Author

Seiichi Manyama, Mar 25 2023

Keywords

Comments

Diagonal of rational function 1/(1 - (1 - x*y) * (x + y)).

Crossrefs

Programs

  • PARI
    my(N=40, x='x+O('x^N)); Vec(1/sqrt(1-4*x*(1-x)^2))

Formula

a(n) = Sum_{k=0..n} (-1)^(n-k) * binomial(2*k,k) * binomial(2*k,n-k).
n*a(n) = 2 * ( (2*n-1)*a(n-1) - 2*(2*n-2)*a(n-2) + (2*n-3)*a(n-3) ) for n > 2.

A361816 Expansion of 1/sqrt(1 - 4*x*(1-x)^3).

Original entry on oeis.org

1, 2, 0, -10, -22, 12, 174, 344, -354, -3304, -5780, 9180, 65258, 99132, -226620, -1313580, -1690990, 5441340, 26681700, 28070100, -128211552, -543818824, -440381780, 2978145240, 11080939914, 6162798092, -68377892976, -225107280388, -64286124152
Offset: 0

Views

Author

Seiichi Manyama, Mar 25 2023

Keywords

Crossrefs

Programs

  • PARI
    my(N=30, x='x+O('x^N)); Vec(1/sqrt(1-4*x*(1-x)^3))

Formula

a(n) = Sum_{k=0..n} (-1)^(n-k) * binomial(2*k,k) * binomial(3*k,n-k).
n*a(n) = 2 * ( (2*n-1)*a(n-1) - 3*(2*n-2)*a(n-2) + 3*(2*n-3)*a(n-3) - (2*n-4)*a(n-4) ) for n > 3.

A361834 Square array T(n,k), n >= 0, k >= 0, read by antidiagonals downwards, where T(n,k) = Sum_{j=0..n} (-1)^(n-j) * binomial(2*j,j) * binomial(k*j,n-j).

Original entry on oeis.org

1, 1, 2, 1, 2, 6, 1, 2, 4, 20, 1, 2, 2, 8, 70, 1, 2, 0, -2, 16, 252, 1, 2, -2, -10, -14, 32, 924, 1, 2, -4, -16, -22, -32, 64, 3432, 1, 2, -6, -20, -10, 12, -30, 128, 12870, 1, 2, -8, -22, 20, 118, 174, 64, 256, 48620, 1, 2, -10, -22, 66, 242, 304, 344, 346, 512, 184756
Offset: 0

Views

Author

Seiichi Manyama, Mar 26 2023

Keywords

Examples

			Square array begins:
    1,  1,   1,   1,   1,   1,    1, ...
    2,  2,   2,   2,   2,   2,    2, ...
    6,  4,   2,   0,  -2,  -4,   -6, ...
   20,  8,  -2, -10, -16, -20,  -22, ...
   70, 16, -14, -22, -10,  20,   66, ...
  252, 32, -32,  12, 118, 242,  342, ...
  924, 64, -30, 174, 304,  82, -678, ...
		

Crossrefs

Columns k=0..4 give A000984, A000079, A361815, A361816, A361817.
Main diagonal gives A361835.
Cf. A361830.

Programs

  • PARI
    T(n, k) = sum(j=0, n, (-1)^(n-j)*binomial(2*j, j)*binomial(k*j, n-j));

Formula

G.f. of column k: 1/sqrt(1 - 4*x*(1-x)^k).
n*T(n,k) = 2 * Sum_{j=0..k} (-1)^j * binomial(k,j)*(2*n-1-j)*T(n-1-j,k) for n > k.
Showing 1-3 of 3 results.