This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A180717 #6 Jul 31 2014 10:10:18 %S A180717 1,1,3,10,37,140,544,2181,8873,36647,152950,644313,2734648,11681428, %T A180717 50173541,216532005,938383331,4081653710,17811999929,77957939080, %U A180717 342099306436,1504801777973,6633574235109,29300516237855 %N A180717 G.f.: Sum_{n>=0} [Sum_{k=0..n} C(n,k)^2*x^k]^2 * x^n. %C A180717 Compare g.f. to a g.f. of the Whitney numbers (A051286): %C A180717 . Sum_{n>=0} [Sum_{k=0..n} C(n,k)^2*x^k] * x^n. %H A180717 Vaclav Kotesovec, <a href="/A180717/b180717.txt">Table of n, a(n) for n = 0..900</a> %F A180717 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 %e A180717 G.f.: A(x) = 1 + x + 3*x^2 + 10*x^3 + 37*x^4 + 140*x^5 + 544*x^6 +... %e A180717 equals the sum of the series: %e A180717 A(x) = 1 + (1 + x)^2*x + (1 + 4*x + x^2)^2*x^2 %e A180717 + (1 + 9*x + 9*x^2 + x^3)^2*x^3 %e A180717 + (1 + 16*x + 36*x^2 + 16*x^3 + x^4)^2*x^4 %e A180717 + (1 + 25*x + 100*x^2 + 100*x^3 + 25*x^4 + x^5)^2*x^5 %e A180717 + (1 + 36*x + 225*x^2 + 400*x^3 + 225*x^4 + 36*x^5 + x^6)^2*x^6 +... %o A180717 (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)} %Y A180717 Cf. A180718. %K A180717 nonn %O A180717 0,3 %A A180717 _Paul D. Hanna_, Sep 29 2010