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.

Showing 1-2 of 2 results.

A107089 G.f. A(x) satisfies: A(x)^9 = A(x^3)^3 + 9*x.

Original entry on oeis.org

1, 1, -4, 23, -150, 1054, -7761, 58998, -459085, 3636389, -29209558, 237295537, -1945823646, 16081045446, -133787515943, 1119454523221, -9413778489629, 79510460561765, -674169212593940, 5736078315701995, -48956250060321142, 419002149097227663
Offset: 0

Views

Author

Paul D. Hanna, May 11 2005

Keywords

Comments

Self-convolution cube is A107090. Self-convolution 9th power is A107091.

Examples

			A(x)^9 = 1 + 9*x + 3*x^3 - 9*x^6 + 46*x^9 - 276*x^12 + 1827*x^15 -+...
A(x^3)^3 = 1 + 3*x^3 - 9*x^6 + 46*x^9 - 276*x^12 + 1827*x^15 -+...
		

Crossrefs

Programs

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

A107090 G.f. A(x) satisfies: A(x)^3 = A(x^3) + 9*x.

Original entry on oeis.org

1, 3, -9, 46, -276, 1827, -12838, 93885, -706878, 5440856, -42608139, 338345586, -2717685006, 22039352340, -180191062062, 1483568585389, -12289222187157, 102343255814052, -856335797389803, 7195400130323322, -60687964204960104, 513600833339124915
Offset: 0

Views

Author

Paul D. Hanna, May 11 2005

Keywords

Comments

Self-convolution cube of A107089. Self-convolution cube yields A107091.

Examples

			A(x)^3 = 1 + 9*x + 3*x^3 - 9*x^6 + 46*x^9 - 276*x^12 + 1827*x^15 -+...
A(x^3) = 1 + 3*x^3 - 9*x^6 + 46*x^9 - 276*x^12 + 1827*x^15 -+...
		

Crossrefs

Programs

  • PARI
    {a(n)=local(A=1+x);for(i=1,n,A=(subst(A,x,x^3)+9*x+x*O(x^n))^(1/3)); polcoeff(A,n,x)}
Showing 1-2 of 2 results.