login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A202814 Moments of the quadratic coefficient of the characteristic polynomial of a random matrix in U(1) X U(1) (embedded in USp(4)). 14

%I #49 Feb 21 2020 07:06:07

%S 1,2,8,32,148,712,3584,18496,97444,521096,2820448,15414016,84917584,

%T 470982176,2627289344,14728751872,82928400164,468699173576,

%U 2657978454944,15118824666496,86230489902928,493021885470496,2825114755879424,16221295513400576,93312601350167824,537693975424462112,3103220029717015424

%N Moments of the quadratic coefficient of the characteristic polynomial of a random matrix in U(1) X U(1) (embedded in USp(4)).

%H G. C. Greubel, <a href="/A202814/b202814.txt">Table of n, a(n) for n = 0..1000</a>

%H Nachum Dershowitz, <a href="https://cs.uwaterloo.ca/journals/JIS/VOL20/Dershowitz/dersh3.html">Touchard’s Drunkard</a>, Journal of Integer Sequences, Vol. 20 (2017), #17.1.5.

%H Francesc Fite, Kiran S. Kedlaya, Victor Rotger and Andrew V. Sutherland, <a href="http://arxiv.org/abs/1110.6638">Sato-Tate distributions and Galois endomorphism modules in genus 2</a> arXiv:1110.6638 [math.NT], 2011 (the sequence b-hat(n) defined at the end of Section 5.1.1).

%F a(n) = Sum_{k=0..n} binomial(n, k)*2^(n-k)*b(k)^2, where b() = A126869().

%F E.g.f.: (exp(x) * I_0(2*x))^2 = square of e.g.f. of A002426. - _Michael Somos_, Jun 27 2012

%F From _Mark van Hoeij_, May 07 2013: (Start)

%F a(n) is the constant term of (2+x+y+1/x+1/y)^n.

%F G.f.: hypergeom([1/2, 1/2],[1],16*x^2/(1-2*x)^2)/(1-2*x). (End)

%F G.f.: 1 / AGM(1-6*x, 1+2*x), where AGM(x,y) = AGM((x+y)/2,sqrt(x*y)) is the arithmetic-geometric mean. - _Paul D. Hanna_, Aug 31 2014

%F D-finite with recurrence n^2*a(n) +2*(-3*n^2+3*n-1)*a(n-1) -4*(n-1)^2*a(n-2) +24*(n-1) *(n-2)*a(n-3)=0. - _R. J. Mathar_, Jun 14 2016

%F a(n) ~ 2^(n-1) * 3^(n+1) / (Pi*n). - _Vaclav Kotesovec_, Jul 20 2019

%e 1 + 2*x + 8*x^2 + 32*x^3 + 148*x^4 + 712*x^5 + 3584*x^6 + 18496*x^7 + 97444*x^8 + ...

%p b:=n->coeff((x^2+1)^n,x,n); #A126869

%p bh:=n->add(binomial(n,k)*2^(n-k)*b(k)^2,k=0..n);

%p [seq(bh(n),n=0..30)];

%t a[ n_] := If[ n < 0, 0, n! SeriesCoefficient[ (Exp[x] BesselI[0, 2 x])^2, {x, 0, n}]] (* _Michael Somos_, Jun 27 2012 *)

%o (PARI) {a(n) = local(A); if( n<0, 0, A = x * O(x^n); n! * polcoeff( (exp(x + A) * besseli( 0, 2*x + A))^2, n))} /* _Michael Somos_, Jun 27 2012 */

%o (PARI) {a(n)=polcoeff( 1 / agm(1-6*x, 1+2*x +x*O(x^n)), n)}

%o for(n=0, 20, print1(a(n), ", ")) \\ _Paul D. Hanna_, Aug 31 2014

%Y Cf. A126869 (the sequence b(n)), A202856.

%Y Cf. A002426.

%K nonn

%O 0,2

%A _N. J. A. Sloane_, Dec 24 2011

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 10:29 EDT 2024. Contains 371905 sequences. (Running on oeis4.)