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.

A349362 G.f. A(x) satisfies: A(x) = 1 + x * A(x)^6 / (1 + x).

Original entry on oeis.org

1, 1, 5, 40, 370, 3740, 40006, 445231, 5102165, 59799505, 713496815, 8637432580, 105826926716, 1309793896431, 16351672606365, 205665994855320, 2603696877136060, 33151784577226295, 424258396639960591, 5454120586840761631, 70402732493668027775
Offset: 0

Views

Author

Ilya Gutkovskiy, Nov 15 2021

Keywords

Crossrefs

Programs

  • Maple
    a:= n-> coeff(series(RootOf(1+x*A^6/(1+x)-A, A), x, n+1), x, n):
    seq(a(n), n=0..20);  # Alois P. Heinz, Nov 15 2021
  • Mathematica
    nmax = 20; A[] = 0; Do[A[x] = 1 + x A[x]^6/(1 + x) + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
    Table[Sum[(-1)^(n - k) Binomial[n - 1, k - 1] Binomial[6 k, k]/(5 k + 1), {k, 0, n}], {n, 0, 20}]

Formula

a(n) = Sum_{k=0..n} (-1)^(n-k) * binomial(n-1,k-1) * binomial(6*k,k) / (5*k+1).
a(n) = (-1)^(n+1)* F([7/6, 4/3, 3/2, 5/3, 11/6, 1-n], [7/5, 8/5, 9/5, 2, 11/5], 6^6/5^5), where F is the generalized hypergeometric function. - Stefano Spezia, Nov 15 2021
a(n) ~ 43531^(n + 1/2) / (72 * sqrt(3*Pi) * n^(3/2) * 5^(5*n + 3/2)). - Vaclav Kotesovec, Nov 17 2021