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.

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

Original entry on oeis.org

1, -1, -4, -5, 19, 119, 226, -789, -7747, -25333, 29428, 826059, 4651651, 7008499, -108045466, -1124213961, -4968432059, 6515205811, 300350438716, 2561696929271, 9034737779711, -58377397309001, -1213955186657474, -9784487206914505, -27228229386096731, 417997375131879519
Offset: 0

Views

Author

Ilya Gutkovskiy, Jul 03 2021

Keywords

Crossrefs

Programs

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

Formula

a(n+1) = -Sum_{k=0..n} binomial(n+4,k+4) * a(k).