OFFSET
1,2
COMMENTS
Compare to: [x^n] exp( n^3 * x ) = n^2 * [x^(n-1)] exp( n^3 * x ) for n>=1.
It is conjectured that this sequence consists entirely of integers.
LINKS
Paul D. Hanna, Table of n, a(n) for n = 1..200
FORMULA
O.g.f. equals the logarithm of the e.g.f. of A300594.
a(n) ~ c * n!^3 * n^3, where c = 0.40774346023... - Vaclav Kotesovec, Oct 14 2020
EXAMPLE
O.g.f.: A(x) = x + 4*x^2 + 243*x^3 + 40448*x^4 + 12519125*x^5 + 6111917748*x^6 + 4308276119854*x^7 + 4151360558858752*x^8 + 5268077625693186225*x^9 + ...
where
exp(A(x)) = 1 + x + 9*x^2/2! + 1483*x^3/3! + 976825*x^4/4! + 1507281021*x^5/5! + 4409747597401*x^6/6! + 21744850191313999*x^7/7! + ... + A300594(n)*x^n/n! + ...
such that: [x^n] exp( n^3 * A(x) ) = n^3 * [x^(n-1)] exp( n^3 * A(x) ).
PROG
(PARI) {a(n) = my(A=[1]); for(i=1, n+1, A=concat(A, 0); V=Vec(Ser(A)^((#A-1)^3)); A[#A] = ((#A-1)^3*V[#A-1] - V[#A])/(#A-1)^3 ); polcoeff( log(Ser(A)), n)}
for(n=1, 30, print1(a(n), ", "))
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Mar 09 2018
STATUS
approved