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.

A211824 G.f. satisfies: A(x) = 1 + x*( d/dx x*A(x) )^3.

Original entry on oeis.org

1, 1, 6, 66, 1016, 19596, 447312, 11686008, 341966304, 11044539840, 389511815136, 14879686213728, 611795661826176, 26934556130346880, 1264203675152355840, 63023836596988857216, 3326204117173583906304, 185302040367551696870400, 10868134346437165639956480
Offset: 0

Views

Author

Paul D. Hanna, Apr 21 2012

Keywords

Examples

			G.f.: A(x) = 1 + x + 6*x^2 + 66*x^3 + 1016*x^4 + 19596*x^5 + 447312*x^6 +...
Related expansions:
d/dx x*A(x) = 1 + 2*x + 18*x^2 + 264*x^3 + 5080*x^4 + 117576*x^5 +...
A'(x) = 1 + 12*x + 198*x^2 + 4064*x^3 + 97980*x^4 + 2683872*x^5 +...
		

Crossrefs

Programs

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

Formula

G.f. satisfies: A(x) = 1 + x*(A(x) + x*A'(x))^3.
a(n) ~ c * 3^n * n! * n^(4/3), where c = 0.1005380575409567... - Vaclav Kotesovec, Aug 24 2017

A211825 G.f. satisfies: A(x) = 1 + x*( d/dx x*A(x) )^4.

Original entry on oeis.org

1, 1, 8, 120, 2528, 66704, 2080128, 74115840, 2952926720, 129637843968, 6205231472640, 321275171444736, 17880710254829568, 1064356462925701120, 67476012302577762304, 4539384115900126199808, 323034928746773883518976, 24248087962137553507450880
Offset: 0

Views

Author

Paul D. Hanna, Apr 21 2012

Keywords

Examples

			G.f.: A(x) = 1 + x + 8*x^2 + 120*x^3 + 2528*x^4 + 66704*x^5 + 2080128*x^6 +...
Related expansions:
d/dx x*A(x) = 1 + 2*x + 24*x^2 + 480*x^3 + 12640*x^4 + 400224*x^5 +...
A'(x) = 1 + 16*x + 360*x^2 + 10112*x^3 + 333520*x^4 + 12480768*x^5 +...
		

Crossrefs

Programs

  • PARI
    {a(n)=local(A=1+x+x*O(x^n));for(i=1,n,A=1+x*deriv(x*A)^4);polcoeff(A,n)}
    for(n=0,25,print1(a(n),", "))

Formula

G.f. satisfies: A(x) = 1 + x*(A(x) + x*A'(x))^4.
a(n) ~ c * 4^n * n! * n^(3/2), where c = 0.06185263969861377609335... - Vaclav Kotesovec, Aug 24 2017
Showing 1-2 of 2 results.