OFFSET
0,3
COMMENTS
Conjecture: this sequence consists entirely of integers.
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..70
EXAMPLE
G.f.: A(x) = 1 + x + 2*x^2 + 6*x^3 + 34*x^4 + 375*x^5 + 15200*x^6 +...
The logarithm of g.f. A(x) begins:
log(A(x)) = x + 3*x^2/2 + 13*x^3/3 + 111*x^4/4 + 1686*x^5/5 + 88737*x^6/6 + ... + A181083(n)*x^n/n + ...
and equals the series:
log(A(x)) = (1 + x)*x + (1 + 2^3*x + x^2)*x^2/2
+ (1 + 3^4*x + 3^5*x^2 + x^3)*x^3/3
+ (1 + 4^5*x + 6^6*x^2 + 4^7*x^3 + x^4)*x^4/4
+ (1 + 5^6*x + 10^7*x^2 + 10^8*x^3 + 5^9*x^4 + x^5)*x^5/5
+ (1 + 6^7*x + 15^8*x^2 + 20^9*x^3 + 15^10*x^4 + 6^11*x^5 + x^6)*x^6/6 + ...
MATHEMATICA
With[{m=20}, CoefficientList[Series[Exp[Sum[Sum[Binomial[n, k]^(n+k)*x^(n+k)/n, {k, 0, n}], {n, m+1}]], {x, 0, m}], x]] (* G. C. Greubel, Apr 05 2021 *)
PROG
(PARI) {a(n)=polcoeff(exp(sum(m=1, n, sum(k=0, m, binomial(m, k)^(m+k)*x^k)*x^m/m)+x*O(x^n)), n)}
(Magma)
m:=20;
R<x>:=PowerSeriesRing(Integers(), m);
Coefficients(R!( Exp( (&+[ (&+[ Binomial(n, k)^(n+k)*x^(n+k)/n : k in [0..n]]): n in [1..m+1]]) ) )); // G. C. Greubel, Apr 05 2021
(Sage)
m=20;
def A181082_list(prec):
P.<x> = PowerSeriesRing(ZZ, prec)
return P( exp( sum( sum( binomial(n, k)^(n+k)*x^(n+k)/n for k in (0..n) ) for n in (1..m+1)) ) ).list()
A181082_list(m) # G. C. Greubel, Apr 05 2021
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Oct 02 2010
STATUS
approved