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 A221161 #11 Dec 23 2022 07:40:18 %S A221161 1,7,72,1056,19968,460800,12533760,392232960,13872660480,546979184640, %T A221161 23781703680000,1130106558873600,58263271479705600, %U A221161 3238634262940876800,193064390900475494400,12285915784575713280000,831229959367865401344000,59578968979556190388224000 %N A221161 G.f.: Sum_{n>=0} (4*n+3)^n * x^n / (1 + (4*n+3)*x)^n. %F A221161 a(n) = (2*n+5) * 4^(n-1) * n! for n>0 with a(0)=1. %F A221161 E.g.f.: (1 - x - 4*x^2) / (1-4*x)^2. %F A221161 From _Amiram Eldar_, Dec 23 2022: (Start) %F A221161 Sum_{n>=0} 1/a(n) = 48*sqrt(Pi)*erfi(1/2) - 40*exp(1/4) + 1/5, where erfi is the imaginary error function. %F A221161 Sum_{n>=0} (-1)^n/a(n) = 48*sqrt(Pi)*erf(1/2) - 56/exp(1/4) + 1/5, where erf is the error function. (End) %e A221161 G.f.: A(x) = 1 + 7*x + 72*x^2 + 1056*x^3 + 19968*x^4 + 460800*x^5 +... %e A221161 where %e A221161 A(x) = 1 + 7*x/(1+7*x) + 11^2*x^2/(1+11*x)^2 + 15^3*x^3/(1+15*x)^3 + 19^4*x^4/(1+19*x)^4 + 23^5*x^5/(1+23*x)^5 +... %t A221161 a[n_] := (2*n + 5)*4^(n - 1)*n!; a[0] = 1; Array[a, 20, 0] (* _Amiram Eldar_, Dec 23 2022 *) %o A221161 (PARI) {a(n)=polcoeff(sum(m=0,n,((4*m+3)*x)^m/(1+(4*m+3)*x +x*O(x^n))^m), n)} %o A221161 for(n=0, 20, print1(a(n), ", ")) %Y A221161 Cf. A187735, A014479, A187738, A187739, A221160, A187740, A333419. %K A221161 nonn %O A221161 0,2 %A A221161 _Paul D. Hanna_, Jan 03 2013