A249930
G.f. A(x) satisfies: 1+x = A(x)^2 + A(x)^6 - A(x)^7.
Original entry on oeis.org
1, 1, 5, 65, 1020, 17915, 336881, 6634391, 135085305, 2820748975, 60074608660, 1299896748546, 28496343865808, 631545920570632, 14126673078922850, 318514279669755470, 7231331734648562366, 165172699475903928921, 3793005825337785580290, 87518313783310367308770
Offset: 0
G.f.: A(x) = 1 + x + 5*x^2 + 65*x^3 + 1020*x^4 + 17915*x^5 + ...
Related expansions.
A(x)^2 = 1 + 2*x + 11*x^2 + 140*x^3 + 2195*x^4 + 38520*x^5 + ...
A(x)^6 = 1 + 6*x + 45*x^2 + 560*x^3 + 8760*x^4 + 153546*x^5 + ...
A(x)^7 = 1 + 7*x + 56*x^2 + 700*x^3 + 10955*x^4 + 192066*x^5 + ...
where 1+x = A(x)^2 + A(x)^6 - A(x)^7.
-
S:= series(RootOf(1+x-(y^2+y^6-y^7),y,1),x,26):
seq(coeff(S,x,i),i=0..25); # Robert Israel, Mar 22 2023
-
/* From 1+x = A(x)^2 + A(x)^6 - A(x)^7: */
{a(n)=local(A=[1, 1]); for(i=1, n, A=concat(A, 0); A[#A]=-Vec(Ser(A)^2+Ser(A)^6-Ser(A)^7)[#A]); A[n+1]}
for(n=0, 25, print1(a(n) , ", "))
-
/* From Series Reversion: */
{a(n)=local(A=1+serreverse(x - 5*x^2 - 15*x^3 - 20*x^4 - 15*x^5 - 6*x^6 - x^7 + x^2*O(x^n)));polcoeff(A,n)}
for(n=0, 25, print1(a(n) , ", "))
A249927
G.f. A(x) satisfies: 1+x = 2*A(x)^3 - A(x)^5.
Original entry on oeis.org
1, 1, 4, 40, 485, 6585, 95732, 1457636, 22947585, 370494965, 6101028934, 102074877086, 1730213141683, 29649526507055, 512810063004600, 8940267160930408, 156944360941491106, 2771866193105829798, 49218079130561578390, 878107603236732844610, 15733529061871743649380
Offset: 0
G.f.: A(x) = 1 + x + 4*x^2 + 40*x^3 + 485*x^4 + 6585*x^5 + 95732*x^6 +...
Related expansions.
A(x)^3 = 1 + 3*x + 15*x^2 + 145*x^3 + 1755*x^4 + 23793*x^5 +...
A(x)^5 = 1 + 5*x + 30*x^2 + 290*x^3 + 3510*x^4 + 47586*x^5 +...
where 1+x = 2*A(x)^3 - A(x)^5.
-
/* From 1+x = 2*A(x)^3 - A(x)^5: */
{a(n)=local(A=[1, 1]); for(i=1, n, A=concat(A, 0); A[#A]=-Vec(2*Ser(A)^3-Ser(A)^5)[#A]); A[n+1]}
for(n=0, 25, print1(a(n) , ", "))
-
/* From Series Reversion: */
{a(n)=local(A=1+serreverse(x - 4*x^2 - 8*x^3 - 5*x^4 - x^5 + x^2*O(x^n)));polcoeff(A,n)}
for(n=0, 25, print1(a(n) , ", "))
A249928
G.f. A(x) satisfies: 1+x = A(x)^2 + A(x)^5 - A(x)^6.
Original entry on oeis.org
1, 1, 4, 42, 530, 7489, 113289, 1794784, 29397876, 493818165, 8460325159, 147264321834, 2596986868762, 46299572773077, 833111268412360, 15110637698827976, 275970530427257207, 5070759797283817869, 93671715612197557390, 1738657226550598494420, 32409645286487921390715
Offset: 0
G.f.: A(x) = 1 + x + 4*x^2 + 42*x^3 + 530*x^4 + 7489*x^5 + 113289*x^6 +...
Related expansions.
A(x)^2 = 1 + 2*x + 9*x^2 + 92*x^3 + 1160*x^4 + 16374*x^5 +...
A(x)^5 = 1 + 5*x + 30*x^2 + 300*x^3 + 3775*x^4 + 53226*x^5 +...
A(x)^6 = 1 + 6*x + 39*x^2 + 392*x^3 + 4935*x^4 + 69600*x^5 +...
where 1+x = A(x)^2 + A(x)^5 - A(x)^6.
-
/* From 1+x = A(x)^2 + A(x)^5 - A(x)^6: */
{a(n)=local(A=[1, 1]); for(i=1, n, A=concat(A, 0); A[#A]=-Vec(Ser(A)^2+Ser(A)^5-Ser(A)^6)[#A]); A[n+1]}
for(n=0, 25, print1(a(n) , ", "))
-
/* From Series Reversion: */
{a(n)=local(A=1+serreverse(x - 4*x^2 - 10*x^3 - 10*x^4 - 5*x^5 - x^6 + x^2*O(x^n)));polcoeff(A,n)}
for(n=0, 25, print1(a(n) , ", "))
A249929
G.f. A(x) satisfies: 1+x = A(x)^3 + A(x)^4 - A(x)^6.
Original entry on oeis.org
1, 1, 6, 87, 1544, 30669, 652387, 14535220, 334846575, 7911062633, 190635605270, 4667362377021, 115772752576351, 2903222873038115, 73481220638826204, 1874686187998433232, 48159602555272931592, 1244712958804985611455, 32343121686417402278602, 844434166911645229308309
Offset: 0
G.f.: A(x) = 1 + x + 6*x^2 + 87*x^3 + 1544*x^4 + 30669*x^5 +...
Related expansions.
A(x)^3 = 1 + 3*x + 21*x^2 + 298*x^3 + 5280*x^4 + 104772*x^5 +...
A(x)^4 = 1 + 4*x + 30*x^2 + 424*x^3 + 7509*x^4 + 148968*x^5 +...
A(x)^6 = 1 + 6*x + 51*x^2 + 722*x^3 + 12789*x^4 + 253740*x^5 +...
where 1+x = A(x)^3 + A(x)^4 - A(x)^6.
-
/* From 1+x = A(x)^3 + A(x)^4 - A(x)^6: */
{a(n)=local(A=[1, 1]); for(i=1, n, A=concat(A, 0); A[#A]=-Vec(Ser(A)^3+Ser(A)^4-Ser(A)^6)[#A]); A[n+1]}
for(n=0, 25, print1(a(n) , ", "))
-
/* From Series Reversion: */
{a(n)=local(A=1+serreverse(x - 6*x^2 - 15*x^3 - 14*x^4 - 6*x^5 - x^6 + x^2*O(x^n)));polcoeff(A,n)}
for(n=0, 25, print1(a(n) , ", "))
A249931
G.f. A(x) satisfies: 1+x = A(x)^3 + A(x)^5 - A(x)^7.
Original entry on oeis.org
1, 1, 8, 152, 3550, 92788, 2597399, 76156625, 2308825896, 71786597460, 2276556265566, 73352261863414, 2394513305129959, 79024386863955715, 2632253500369515600, 88379408361414983552, 2987975394537672941171, 101633132452812322479087, 3475524159518622818586778
Offset: 0
G.f.: A(x) = 1 + x + 8*x^2 + 152*x^3 + 3550*x^4 + 92788*x^5 +...
Related expansions.
A(x)^3 = 1 + 3*x + 27*x^2 + 505*x^3 + 11778*x^4 + 307608*x^5 +...
A(x)^5 = 1 + 5*x + 50*x^2 + 930*x^3 + 21675*x^4 + 565901*x^5 +...
A(x)^7 = 1 + 7*x + 77*x^2 + 1435*x^3 + 33453*x^4 + 873509*x^5 +...
where 1+x = A(x)^3 + A(x)^5 - A(x)^7.
-
/* From 1+x = A(x)^3 + A(x)^5 - A(x)^7: */
{a(n)=local(A=[1, 1]); for(i=1, n, A=concat(A, 0); A[#A]=-Vec(Ser(A)^3+Ser(A)^5-Ser(A)^7)[#A]); A[n+1]}
for(n=0, 25, print1(a(n) , ", "))
-
/* From Series Reversion: */
{a(n)=local(A=1+serreverse(x - 8*x^2 - 24*x^3 - 30*x^4 - 20*x^5 - 7*x^6 - x^7 + x^2*O(x^n)));polcoeff(A,n)}
for(n=0, 25, print1(a(n) , ", "))
A249932
G.f. A(x) satisfies: 1+x = 2*A(x)^4 - A(x)^7.
Original entry on oeis.org
1, 1, 9, 189, 4893, 141771, 4399549, 143008579, 4806584226, 165685071354, 5825261477574, 208089042731934, 7531002619598458, 275548081670765638, 10175724606458649366, 378783118623851279250, 14197727780171976218883, 535401733845392629890255, 20298674469757725391376887
Offset: 0
G.f.: A(x) = 1 + x + 9*x^2 + 189*x^3 + 4893*x^4 + 141771*x^5 +...
Related expansions.
A(x)^4 = 1 + 4*x + 42*x^2 + 868*x^3 + 22435*x^4 + 649488*x^5 +...
A(x)^7 = 1 + 7*x + 84*x^2 + 1736*x^3 + 44870*x^4 + 1298976*x^5 +...
where 1+x = 2*A(x)^4 - A(x)^7.
-
/* From 1+x = 2*A(x)^4 - A(x)^7: */
{a(n)=local(A=[1, 1]); for(i=1, n, A=concat(A, 0); A[#A]=-Vec(2*Ser(A)^4-Ser(A)^7)[#A]); A[n+1]}
for(n=0, 25, print1(a(n) , ", "))
-
/* From Series Reversion: */
{a(n)=local(A=1+serreverse(x - 9*x^2 - 27*x^3 - 33*x^4 - 21*x^5 - 7*x^6 - x^7 + x^2*O(x^n)));polcoeff(A,n)}
for(n=0, 25, print1(a(n) , ", "))
Showing 1-6 of 6 results.