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”).

A144004
E.g.f. A(x) satisfies: A(x) = 1 + Series_Reversion( Integral 1/A(x)^4 dx ).
2
1, 1, 4, 44, 856, 24664, 958592, 47463936, 2881313024, 208638075392, 17654019768320, 1717961286944768, 189836122499649536, 23574107397852049408, 3261667682403085852672, 499151625979680748978176
OFFSET
0,3
FORMULA
E.g.f. A(x) satisfies: A'(x) = A(A(x) - 1)^4. - Paul D. Hanna, Sep 07 2024
EXAMPLE
E.g.f.: A(x) = 1 + x + 4*x^2/2! + 44*x^3/3! + 856*x^4/4! + 24664*x^5/5! + 958592*x^6/6! + 47463936*x^7/7! + 2881313024*x^8/8! + ...
PROG
(PARI) {a(n) = my(A=1+x+x*O(x^n)); for(i=0, n, A = 1 + serreverse(intformal(1/A^4))); n!*polcoef(A, n)}
for(n=0, 20, print1(a(n), ", "))
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Sep 07 2008
STATUS
approved