cp's OEIS Frontend

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.

A318634 a(n) = coefficient of x^(2*n-1)*y^(2*n)/(2*n-1)! in Log( Sum_{n>=0} (n^2 + y^2)^n * x^n/n! ), for n>=1.

This page as a plain text file.
%I A318634 #16 Mar 20 2024 09:18:37
%S A318634 1,6,480,122640,66044160,61482516480,88135315107840,
%T A318634 180378921026304000,499734635092800307200,1801642618822079338905600,
%U A318634 8199046303785011864744755200,45976521975711536997953490124800,311502479360401852390993821696000000,2508845886467091418046335123571343360000,23693183471722887844366765687378500648960000
%N A318634 a(n) = coefficient of x^(2*n-1)*y^(2*n)/(2*n-1)! in Log( Sum_{n>=0} (n^2 + y^2)^n * x^n/n! ), for n>=1.
%C A318634 E.g.f. A(x) = Sum_{n>=1} a(n)*x^(2*n-1)/(2*n-1)! equals the logarithm of the e.g.f. of A318633.
%H A318634 Vaclav Kotesovec, <a href="/A318634/b318634.txt">Table of n, a(n) for n = 1..145</a> (terms 1..75 from Paul D. Hanna)
%F A318634 a(n) ~ 5^(-1/4) * 2^(3*n - 3/2) * (1 + sqrt(5))^(n - 3/2) * exp((1 - sqrt(5))*n + (sqrt(5) - 3)/2) * n^(2*n-3). - _Vaclav Kotesovec_, Mar 20 2024
%e A318634 E.g.f.: A(x) = x + 6*x^3/3! + 480*x^5/5! + 122640*x^7/7! + 66044160*x^9/9! + 61482516480*x^11/11! + 88135315107840*x^13/13! + 180378921026304000*x^15/15! + ...
%e A318634 The e.g.f. A(x) may also be written using somewhat reduced coefficients
%e A318634 A(x) = x + x^3 + 8*x^5/2! + 146*x^7/3! + 4368*x^9/4! + 184832*x^11/5! + 10190656*x^13/6! + 695211120*x^15/7! + 56648897024*x^17/8! + 5374487515904*x^19/9! + ... + a(n)*(n-1)!/(2*n-1)! * x^(2*n-1)/(n-1)! + ...
%e A318634 Exponentiation yields the e.g.f. of A318633:
%e A318634 exp(A(x)) = 1 + x + x^2/2! + 7*x^3/3! + 25*x^4/4! + 541*x^5/5! + 3361*x^6/6! + 135451*x^7/7! + 1179697*x^8/8! + 72062425*x^9/9! +...+ A318633(n)*x^n/n! + ...
%e A318634 which equals
%e A318634 Limit_{N->oo} [ Sum_{n>=0} (N^2 + n^2)^n * (x/N)^n/n! ]^(1/N).
%o A318634 (PARI) {a(n) = (2*n-1)! * polcoeff( polcoeff( log( sum(m=0, 2*n, (m^2 + y^2)^m *x^m/m! ) +x*O(x^(2*n)) ), 2*n-1, x), 2*n, y)}
%o A318634 for(n=1, 20, print1(a(n), ", "))
%Y A318634 Cf. A318633, A266526, A319834.
%K A318634 nonn
%O A318634 1,2
%A A318634 _Paul D. Hanna_, Sep 04 2018