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.

A135869 G.f. A(x) = 1 + x*A(3x)^2.

Original entry on oeis.org

1, 1, 6, 117, 6642, 1097874, 537135948, 784812995973, 3435153688724346, 45086429284345043334, 1775007791598340247784372, 209630197234751724563143145346, 74271350069687203431923556331222068
Offset: 0

Views

Author

Paul D. Hanna, Dec 02 2007

Keywords

Comments

Self-convolution equals A135870.

Crossrefs

Programs

  • PARI
    {a(n)=local(A=1+x+x*O(x^n));for(i=0,n,A=1+x*subst(A,x,3*x)^2);polcoeff(A,n)}