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-5 of 5 results.

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

Original entry on oeis.org

1, 1, 4, 36, 640, 21888, 1451008, 188941312, 48768745472, 25069815595008, 25722272102744064, 52730972085034156032, 216091838647321476726784, 1770657164881170759078117376, 29013990909330956353981535748096
Offset: 0

Views

Author

Paul D. Hanna, Dec 02 2007

Keywords

Comments

Self-convolution equals A135868 such that 2^n*A135868(n) = a(n+1) for n >= 0.

Crossrefs

Programs

  • Mathematica
    nmax = 15; A[] = 0; Do[A[x] = 1 + x*A[2*x]^2 + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x] (* Vaclav Kotesovec, Nov 04 2021 *)
  • PARI
    {a(n)=local(A=1+x+x*O(x^n));for(i=0,n,A=1+x*subst(A,x,2*x)^2);polcoeff(A,n)}
    
  • PARI
    a(n)=if(n==0,1,2^(n-1)*sum(k=0,n-1,a(k)*a(n-k-1))) \\ Paul D. Hanna, Feb 09 2010

Formula

a(n) = 2^(n-1)*Sum_{k=0..n-1} a(k)*a(n-k-1) for n>0 with a(0)=1. - Paul D. Hanna, Feb 09 2010
a(n) ~ c * 2^(n*(n+1)/2), where c = 0.715337433614869740944075474484711589980951273610257702786245519231799678... - Vaclav Kotesovec, Nov 04 2021

A143049 G.f. A(x) satisfies A(x) = 1 + x*A(-x)^6.

Original entry on oeis.org

1, 1, -6, -21, 286, 1281, -20592, -100226, 1749462, 8899086, -162993402, -852079872, 16106878320, 85783258295, -1658113447608, -8950840125828, 175904428301062, 959332126312266, -19096256882857668, -104984591307499239, 2111233112316364434
Offset: 0

Views

Author

Paul D. Hanna, Jul 19 2008

Keywords

Examples

			A(x) = 1 + x - 6*x^2 - 21*x^3 + 286*x^4 + 1281*x^5 - 20592*x^6 -++-...
A(x)^6 = 1 + 6*x - 21*x^2 - 286*x^3 + 1281*x^4 + 20592*x^5 - 100226*x^6 -...
A(x)^7 = 1 + 7*x - 21*x^2 - 364*x^3 + 1281*x^4 + 27027*x^5 - 100226*x^6 -...
Note that a bisection of A^7 equals a bisection of A^6.
		

Crossrefs

Programs

  • PARI
    a(n)=local(A=x+x*O(x^n));for(i=0,n,A=1+x*subst(A,x,-x)^6);polcoeff(A,n)

Formula

G.f. satisfies: A(x) = 1 + x*(1 - x*A(x)^6)^6.
G.f. satisfies: [A(x)^7 + A(-x)^7]/2 = [A(x)^6 + A(-x)^6]/2.
a(0) = 1; a(n) = (-1)^(n-1) * Sum_{x_1, x_2, ..., x_6>=0 and x_1+x_2+...+x_6=n-1} Product_{k=1..6} a(x_k). - Seiichi Manyama, Jul 08 2025

A171204 G.f. A(x) satisfies A(x) = 1 + x*A(2*x)^5.

Original entry on oeis.org

1, 1, 10, 240, 11280, 1000080, 169100832, 55605632640, 36058105605120, 46450803286978560, 119290436529298554880, 611727201854914747760640, 6268994998754867059071385600, 128439243721180540266999017635840, 5261899692949082390205726962630000640, 431096933496167311430326245852780460769280
Offset: 0

Views

Author

Paul D. Hanna, Dec 05 2009

Keywords

Crossrefs

Programs

  • Mathematica
    terms = 16; A[] = 0; Do[A[x] = 1 + x*A[2x]^5 + 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)^5); polcoeff(A, n)}

Formula

a(0) = 1; a(n) = 2^(n-1) * Sum_{i, j, k, l, m>=0 and i+j+k+l+m=n-1} a(i) * a(j) * a(k) * a(l) * a(m). - Seiichi Manyama, Jul 08 2025

A171205 G.f. satisfies: A(x) = (1 + x*A(2x))^5.

Original entry on oeis.org

1, 5, 60, 1410, 62505, 5284401, 868838010, 281703950040, 181448450339760, 232989133846286240, 597389845561440183360, 3061032714235774931187200, 31357237236616342838622807040, 642321739861948533960660029617920, 26312068694834430629292373404100369920, 2155589935049851254662487477552439610480640
Offset: 0

Views

Author

Paul D. Hanna, Dec 05 2009

Keywords

Crossrefs

Programs

  • Mathematica
    terms = 16; A[] = 0; Do[A[x] = (1 + x*A[2x])^5 + 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))^5); polcoeff(A, n)}

Formula

Self-convolution 5th power of A171204 where a(n) = A171204(n+1)/2^n for n>=0.

Extensions

a(14)-a(15) from Stefano Spezia, Apr 02 2025

A171207 G.f. satisfies: A(x) = (1 + x*A(2x))^6.

Original entry on oeis.org

1, 6, 87, 2468, 131799, 13400550, 2646848041, 1030386755856, 796631252763576, 1227659952939056640, 3777547269650299331856, 23228194648169000672639616, 285544368619000766118426358016, 7018967175754802830514246125923840, 345031382341287335424234252089128848384
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])^6 + 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))^6); polcoeff(A, n)}

Formula

Self-convolution 6th power of A171206 where a(n) = A171206(n+1)/2^n for n>=0.

Extensions

a(14) from Stefano Spezia, Apr 02 2025
Showing 1-5 of 5 results.