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.

A352009 a(0) = 1; a(n) = Sum_{k=0..floor((n-1)/2)} (-2)^k * a(k) * a(n-2*k-1).

Original entry on oeis.org

1, 1, 1, -1, -3, -1, 5, 23, 29, -33, -139, -217, 13, 943, 1765, -1545, -8963, -11265, 6229, 73671, 126701, -65713, -567611, -793449, 415197, 4231583, 7471669, -4933529, -37928499, -52823313, 28920485, 346647351, 610476733, -316142785, -2913394667, -4922323705
Offset: 0

Views

Author

Ilya Gutkovskiy, Feb 28 2022

Keywords

Crossrefs

Programs

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

Formula

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

A352010 a(0) = 1; a(n) = Sum_{k=0..floor((n-1)/2)} (-3)^k * a(k) * a(n-2*k-1).

Original entry on oeis.org

1, 1, 1, -2, -5, 1, 16, 94, 127, -317, -1103, -2258, 160, 18922, 39664, -163064, -524489, -187577, 1711591, 12353800, 18926119, -53449661, -207918068, -15689834, 960812728, 3295064650, 3870965368, -33248209286, -96830084768, 17122290256, 505711364524
Offset: 0

Views

Author

Ilya Gutkovskiy, Feb 28 2022

Keywords

Crossrefs

Programs

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

Formula

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