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 A220955 #32 Nov 18 2017 04:26:25 %S A220955 1,26,1320,99288,9901920,1230768704,183260197120,31800433551744, %T A220955 6301891570411008,1404224096732154880,347532097449969496064, %U A220955 94584986134590717358080,28076463606243146379018240,9027122730610037995425792000,3125219575155651450096795648000 %N A220955 O.g.f.: Sum_{n>=0} (2*n+1)^(2*n+1) * exp(-(2*n+1)^2*x) * x^n / n!. %C A220955 From _Vaclav Kotesovec_, May 13 2014: (Start) %C A220955 Generally, for p>1, a(n) = 1/n! * Sum_{k=0..n} (-1)^(n-k)*binomial(n,k) * (p*k+1)^(p*n+1) = Sum_{k=0..(p-1)*n+1} p^(n+k) * binomial(p*n+1,n+k) * stirling2(n+k,n). %C A220955 a(n) ~ n^(n*p-n+1/2) * p^(2*p*n+2+1/p) / (sqrt(2*Pi*(1-r)) * exp((p-1)*n) * r^(n+1/p) * (p-r)^(n*p-n+1)), where r = -LambertW(-p*exp(-p)). %C A220955 (End) %H A220955 G. C. Greubel, <a href="/A220955/b220955.txt">Table of n, a(n) for n = 0..290</a> %F A220955 a(n) = 1/n! * [x^n] Sum_{k>=0} (2*k+1)^(2*k+1) * x^k / (1 + (2*k+1)^2*x)^(k+1). %F A220955 a(n) = 1/n! * Sum_{k=0..n} (-1)^(n-k)*binomial(n,k) * (2*k+1)^(2*n+1). %F A220955 a(n) = Sum_{k=0..n+1} 2^(n+k) * binomial(2*n+1,n+k) * stirling2(n+k,n). - _Vaclav Kotesovec_, May 13 2014 %F A220955 a(n) ~ n^(n+1/2) * 2^(4*n+5/2) / (sqrt(2*Pi*(1-r)) * exp(n) * r^(n+1/2) * (2-r)^(n+1)), where r = -LambertW(-2*exp(-2)) = 0.4063757399599599... (see A226775 = -r) . - _Vaclav Kotesovec_, May 13 2014 %e A220955 O.g.f.: A(x) = 1 + 26*x + 1320*x^2 + 99288*x^3 + 9901920*x^4 +... %e A220955 where A(x) = exp(-x) + 3^3*exp(-3^2*x)*x + 5^5*exp(-5^2*x)*x^2/2! + 7^7*exp(-7^2*x)*x^3/3! + 9^9*exp(-9^2*x)*x^4/4! + 11^11*exp(-11^2*x)*x^5/5! +... %e A220955 is a power series in x with integer coefficients. %t A220955 Table[1/n! * Sum[(-1)^(n-k)*Binomial[n,k] * (2*k+1)^(2*n+1),{k,0,n}],{n,0,20}] (* _Vaclav Kotesovec_, May 13 2014 *) %t A220955 Table[Sum[Binomial[2*n+1,n+k]*2^(n+k)*StirlingS2[n+k,n],{k,0,n+1}],{n,0,20}] (* _Vaclav Kotesovec_, May 13 2014 *) %o A220955 (PARI) {a(n)=polcoeff(sum(k=0, n, (2*k+1)^(2*k+1)*exp(-(2*k+1)^2*x +x*O(x^n))*x^k/k!), n)} %o A220955 for(n=0, 20, print1(a(n), ", ")) %o A220955 (PARI) {a(n)=(1/n!)*polcoeff(sum(k=0, n, (2*k+1)^(2*k+1)*x^k/(1+(2*k+1)^2*x +x*O(x^n))^(k+1)), n)} %o A220955 for(n=0, 20, print1(a(n), ", ")) %o A220955 (PARI) {a(n)=1/n!*sum(k=0, n, (-1)^(n-k)*binomial(n, k)*(2*k+1)^(2*n+1))} %o A220955 for(n=0, 20, print1(a(n), ", ")) %Y A220955 Cf. A222525, A221214, A213193, A217900, A007820, A242449. %K A220955 nonn %O A220955 0,2 %A A220955 _Paul D. Hanna_, Feb 27 2013