OFFSET
0,3
COMMENTS
It is remarkable that this sequence should consist entirely of integers.
LINKS
Paul D. Hanna, Table of n, a(n) for n = 0..300
FORMULA
a(n) ~ c * n^(2*n + 2) / exp(2*n), where c = 15.159858073932625358279885219043... - Vaclav Kotesovec, Aug 11 2021
EXAMPLE
O.g.f.: A(x) = 1 + x + 3*x^2 + 59*x^3 + 1775*x^4 + 71511*x^5 + 3735265*x^6 + 245211865*x^7 + 19803108233*x^8 + 1936950231585*x^9 + ...
RELATED SERIES.
A'(x)/A(x) = 1 + 5*x + 169*x^2 + 6857*x^3 + 348121*x^4 + 21952541*x^5 + 1688688793*x^6 + 156361635585*x^7 + 17247060489337*x^8 + ...
PROG
(PARI) {a(n) = my(A=[1, 1], m); for(i=1, n+1, m=#A; A=concat(A, 0); A[m+1] = Vec( exp(m*(m-1)*x*Ser(A)) / Ser(A) )[m+1] ); A[n+1]}
for(n=0, 20, print1(a(n), ", "))
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jun 05 2018
STATUS
approved