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

A300993
O.g.f. A(x) satisfies: A(x) = x * (1 - 5*x*A'(x)) / (1 - 6*x*A'(x)).
7
1, 1, 8, 84, 1080, 16056, 266256, 4816080, 93638016, 1937252160, 42339628800, 972303685632, 23365476089856, 585706819083264, 15276194983411200, 413695882240574976, 11612673418376392704, 337392794531354462208, 10133165365696293507072, 314252173854006410465280, 10053170842576476899524608, 331455812860465669006442496
OFFSET
1,3
COMMENTS
O.g.f. equals the logarithm of the e.g.f. of A300992.
The e.g.f. G(x) of A300992 satisfies: [x^n] G(x)^(6*n) = (n+5) * [x^(n-1)] G(x)^(6*n) for n>=1.
LINKS
FORMULA
O.g.f. A(x) satisfies: [x^n] exp( 6*n * A(x) ) = (n + 5) * [x^(n-1)] exp( 6*n * A(x) ) for n>=1.
a(n) ~ c * n! * n^11, where c = 0.00000000002970897246102814... - Vaclav Kotesovec, Mar 20 2018
EXAMPLE
O.g.f.: A(x) = x + x^2 + 8*x^3 + 84*x^4 + 1080*x^5 + 16056*x^6 + 266256*x^7 + 4816080*x^8 + 93638016*x^9 + 1937252160*x^10 + ...
where
A(x) = x * (1 - 5*x*A'(x)) / (1 - 6*x*A'(x)).
RELATED SERIES.
exp(A(x)) = 1 + x + 3*x^2/2! + 55*x^3/3! + 2233*x^4/4! + 141201*x^5/5! + 12458731*x^6/6! + 1435102663*x^7/7! + 206465053425*x^8/8! + 35963535971233*x^9/9! + ... + A300992(n)*x^n/n! + ...
A'(x) = 1 + 2*x + 24*x^2 + 336*x^3 + 5400*x^4 + 96336*x^5 + 1863792*x^6 + 38528640*x^7 + 842742144*x^8 + 19372521600*x^9 + ...
PROG
(PARI) {a(n) = my(A=x); for(i=1, n, A = x*(1-5*x*A')/(1-6*x*A' +x*O(x^n))); polcoeff(A, n)}
for(n=1, 25, print1(a(n), ", "))
(PARI) /* [x^n] exp( 6*n * A(x) ) = (n + 5) * [x^(n-1)] exp( 6*n * A(x) ) */
{a(n) = my(A=[1]); for(i=1, n+1, A=concat(A, 0); V=Vec(Ser(A)^(6*(#A-1))); A[#A] = ((#A+4)*V[#A-1] - V[#A])/(6*(#A-1)) ); polcoeff( log(Ser(A)), n)}
for(n=1, 25, print1(a(n), ", "))
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Mar 19 2018
STATUS
approved