login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A361310
G.f. A(x) satisfies A(x) = Series_Reversion(x - x^4*A'(x)^3).
7
1, 1, 16, 538, 26676, 1705373, 131524408, 11778395196, 1195433981028, 135247561603456, 16853285080609312, 2292048750536003426, 337754031605269049112, 53608164572529006153454, 9118712400086550140230888, 1655104918901340697851158384, 319341008921919836189242604080
OFFSET
1,3
LINKS
FORMULA
G.f. A(x) = Sum_{n>=1} a(n)*x^(3*n-2) may be defined by the following.
(1) A(x) = Series_Reversion(x - x^4*A'(x)^3).
(2) A(x) = x + A(x)^4 * A'(A(x))^3.
(3) A(x) = x * exp( Sum_{n>=1} d^(n-1)/dx^(n-1) x^(4*n-1) * A'(x)^(3*n) / n! ).
(4) A'(x) = Sum_{n>=0} d^n/dx^n x^(4*n) * A'(x)^(3*n) / n! is the g.f. of A361543.
(5) a(n) = A361543(n-1)/(3*n-2) for n >= 1.
EXAMPLE
G.f.: A(x) = x + x^4 + 16*x^7 + 538*x^10 + 26676*x^13 + 1705373*x^16 + 131524408*x^19 + 11778395196*x^22 + ... + a(n)*x^(3*n-2) + ...
By definition, A(x - x^4*A'(x)^3) = x, where
A'(x) = 1 + 4*x^3 + 112*x^6 + 5380*x^9 + 346788*x^12 + 27285968*x^15 + 2498963752*x^18 + 259124694312*x^21 + ... + A361543(n)*x^(3*n) + ...
Also,
A'(x) = 1 + (d/dx x^4*A'(x)^3) + (d^2/dx^2 x^8*A'(x)^6)/2! + (d^3/dx^3 x^12*A'(x)^9)/3! + (d^4/dx^4 x^16*A'(x)^12)/4! + (d^5/dx^5 x^20*A'(x)^15/5! + ... + (d^n/dx^n x^(4*n)*A'(x)^(3*n))/n! + ...
Further,
A(x) = x * exp( x^3*A'(x)^3 + (d/dx x^7*A'(x)^6)/2! + (d^2/dx^2 x^11*A'(x)^9)/3! + (d^3/dx^3 x^15*A'(x)^12)/4! + (d^4/dx^4 x^19*A'(x)^15)/5! + ... + (d^(n-1)/dx^(n-1) x^(4*n-1)*A'(x)^(3*n))/n! + ... ).
PROG
(PARI) {a(n) = my(A=x+x^3); for(i=1, n, A = serreverse(x - x^4*A'^3 +x*O(x^(3*n)))); polcoeff(A, 3*n-2)}
for(n=1, 25, print1(a(n), ", "))
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Mar 17 2023
STATUS
approved