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.

A371990 G.f. A(x) satisfies A(x) = ( 1 + 16*x*A(x)*(1 + A(x)) )^(1/4).

Original entry on oeis.org

1, 8, 0, -256, 2048, 8192, -327680, 2097152, 27262976, -612368384, 2013265920, 82409684992, -1249835483136, -996432412672, 239418656948224, -2495891395051520, -17018240974716928, 669901648478339072, -4349632815109767168, -80937285128219000832
Offset: 0

Views

Author

Seiichi Manyama, Apr 15 2024

Keywords

Crossrefs

Programs

  • PARI
    a(n) = 16^n*sum(k=0, n, binomial(n, k)*binomial(n/4+k/4+1/4, n)/(n+k+1));

Formula

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