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-2 of 2 results.

A376134 a(0) = 1; a(n) = Sum_{k=0..n-1} (-1)^k * (k+1) * a(k) * a(n-k-1).

Original entry on oeis.org

1, 1, -1, -6, 17, 141, -660, -6688, 43837, 521755, -4412893, -60477282, 628119268, 9772644140, -120524236108, -2103803950976, 30068650440341, 582807287964375, -9477098158324107, -202143447363632090, 3686281848172281145, 85853256990102196221, -1735552985238117874788
Offset: 0

Views

Author

Ilya Gutkovskiy, Sep 11 2024

Keywords

Crossrefs

Programs

  • Mathematica
    a[0] = 1; a[n_] := a[n] = Sum[(-1)^k (k + 1) a[k] a[n - k - 1], {k, 0, n - 1}]; Table[a[n], {n, 0, 22}]
    nmax = 22; A[] = 0; Do[A[x] = 1/(1 - x A[-x] + x^2 A'[-x]) + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]

Formula

G.f. A(x) satisfies: A(x) = 1 / (1 - x * A(-x) + x^2 * A'(-x)).

A376135 a(0) = 1; a(n) = Sum_{k=0..n-1} (-1)^k * (2*k+1) * a(k) * a(n-k-1).

Original entry on oeis.org

1, 1, -2, -15, 86, 1030, -9844, -156219, 2098406, 41282298, -716119260, -16837011158, 358425572604, 9820300812556, -247923816153128, -7765514675946195, 226869417798485382, 8001626352728559218, -265582398152349968716, -10419379442081103988738
Offset: 0

Views

Author

Ilya Gutkovskiy, Sep 11 2024

Keywords

Crossrefs

Programs

  • Mathematica
    a[0] = 1; a[n_] := a[n] = Sum[(-1)^k (2 k + 1) a[k] a[n - k - 1], {k, 0, n - 1}]; Table[a[n], {n, 0, 19}]
    nmax = 19; A[] = 0; Do[A[x] = 1/(1 - x A[-x] + 2 x^2 A'[-x]) + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]

Formula

G.f. A(x) satisfies: A(x) = 1 / (1 - x * A(-x) + 2 * x^2 * A'(-x)).
Showing 1-2 of 2 results.