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 A206152 #13 Jan 29 2019 09:10:59 %S A206152 1,2,10,326,64066,111968752,1091576358244,106664423412770932, %T A206152 67305628532703785062402,329378455047908259704557301276, %U A206152 15577435010841058543979449475481629020,4149966977623235242137197627437116176363522092 %N A206152 a(n) = Sum_{k=0..n} binomial(n,k)^(n+k). %C A206152 Ignoring initial term, equals the logarithmic derivative of A206151. %H A206152 Seiichi Manyama, <a href="/A206152/b206152.txt">Table of n, a(n) for n = 0..47</a> %F A206152 Limit n->infinity a(n)^(1/n^2) = r^(-(1+r)^2/(2*r)) = 2.93544172048274005711865243..., where r = 0.6032326837741362... (see A237421) is the root of the equation (1-r)^(2*r) = r^(2*r+1). - _Vaclav Kotesovec_, Mar 03 2014 %e A206152 L.g.f.: L(x) = 2*x + 10*x^2/2 + 326*x^3/3 + 64066*x^4/4 + 111968752*x^5/5 +... %e A206152 where exponentiation yields A206151: %e A206152 exp(L(x)) = 1 + 2*x + 7*x^2 + 120*x^3 + 16257*x^4 + 22426576*x^5 +... %e A206152 Illustration of initial terms: %e A206152 a(1) = 1^1 + 1^2 = 2; %e A206152 a(2) = 1^2 + 2^3 + 1^4 = 10; %e A206152 a(3) = 1^3 + 3^4 + 3^5 + 1^6 = 326; %e A206152 a(4) = 1^4 + 4^5 + 6^6 + 4^7 + 1^8 = 64066; ... %t A206152 Table[Sum[Binomial[n,k]^(n+k), {k, 0, n}], {n, 0, 20}] (* _Vaclav Kotesovec_, Mar 03 2014 *) %o A206152 (PARI) {a(n)=sum(k=0,n,binomial(n,k)^(n+k))} %Y A206152 Cf. A206151, A227403, A237421. %K A206152 nonn %O A206152 0,2 %A A206152 _Paul D. Hanna_, Feb 04 2012