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.

A385206 G.f. A(x) satisfies A(x) = ( 1 + 49*x*A(x) )^(1/7).

Original entry on oeis.org

1, 7, -98, 1715, -28812, 369754, 0, -234003861, 11187831655, -379208609780, 10505577339166, -237021026782414, 3747904201751920, 0, -3136632447485449416, 165539296779239527515, -6087083256734433868530, 180571542422445599417377, -4318405727843353425012650
Offset: 0

Views

Author

Seiichi Manyama, Jun 21 2025

Keywords

Crossrefs

Programs

  • PARI
    a(n) = 49^n*binomial(n/7+1/7, n)/(n+1);
    
  • PARI
    my(N=30, x='x+O('x^N)); Vec(serreverse(x/(1+49*x)^(1/7))/x)

Formula

a(n) = 49^n * binomial(n/7+1/7,n)/(n+1).
G.f. A(x) satisfies A(x) = 1/A(-x/A(x)^5).
G.f.: (1/x) * Series_Reversion(x/(1+49*x)^(1/7)).
a(7*n+6) = 0 for n >= 0.