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.

A171210 G.f. A(x) satisfies A(x) = 1 + x*A(2*x)^8.

Original entry on oeis.org

1, 1, 16, 624, 47552, 6804576, 1849952000, 975746615040, 1013611906401280, 2090459909088346368, 8592166589474459877376, 70508055994868618069409792, 1156194054760373598022278840320, 37902377449956182566891283844956160, 2484501232375923934830943089632156319744
Offset: 0

Views

Author

Paul D. Hanna, Dec 05 2009

Keywords

Crossrefs

Programs

  • Mathematica
    terms = 15; A[] = 0; Do[A[x] = 1+x*A[2x]^8 + O[x]^terms // Normal, terms]; CoefficientList[A[x], x] (* Stefano Spezia, Apr 02 2025 *)
  • PARI
    {a(n)=local(A=1+x+x*O(x^n)); for(i=0, n, A=1+x*subst(A, x, 2*x)^8); polcoeff(A, n)}

Formula

a(0) = 1; a(n) = 2^(n-1) * Sum_{x_1, x_2, ..., x_8>=0 and x_1+x_2+...+x_8=n-1} Product_{k=1..8} a(x_k). - Seiichi Manyama, Jul 08 2025