OFFSET
0,3
COMMENTS
Compare g.f. to a g.f. of the Whitney numbers (A051286):
. Sum_{n>=0} [Sum_{k=0..n} C(n,k)^2*x^k] * x^n.
LINKS
Vaclav Kotesovec, Table of n, a(n) for n = 0..900
FORMULA
a(n) ~ c * d^n / (Pi*n), where d = 1/3*(5 + (187/2 - (9*sqrt(93))/2)^(1/3) + (1/2*(187 + 9*sqrt(93)))^(1/3)) = 4.61347026758155538... is the root of the equation 1 - 2*d + 5*d^2 - d^3 = 0, c = 1/192*(80 + (382976 - 18432*sqrt(93))^(1/3) + 8*2^(2/3)*(187 + 9*sqrt(93))^(1/3)) = 1.15336756689... is the root of the equation 64*c^3 - 80*c^2 + 8*c - 1 = 0. - Vaclav Kotesovec, Jul 31 2014
EXAMPLE
G.f.: A(x) = 1 + x + 3*x^2 + 10*x^3 + 37*x^4 + 140*x^5 + 544*x^6 +...
equals the sum of the series:
A(x) = 1 + (1 + x)^2*x + (1 + 4*x + x^2)^2*x^2
+ (1 + 9*x + 9*x^2 + x^3)^2*x^3
+ (1 + 16*x + 36*x^2 + 16*x^3 + x^4)^2*x^4
+ (1 + 25*x + 100*x^2 + 100*x^3 + 25*x^4 + x^5)^2*x^5
+ (1 + 36*x + 225*x^2 + 400*x^3 + 225*x^4 + 36*x^5 + x^6)^2*x^6 +...
PROG
(PARI) {a(n)=polcoeff(sum(m=0, n, sum(k=0, m, binomial(m, k)^2*x^k)^2*x^m)+x*O(x^n), n)}
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Sep 29 2010
STATUS
approved