A328786 a(n) = (Sum_{k=0..n-1}(-1)^k*(39480*k+7321)*29700^(n-1-k)*T_k(14,1)*T_k(11,-11)^2)/n, where T_k(b,c) denotes the coefficient of x^k in the expansion of (x^2+b*x+c)^k.
7321, 69076403, 1423525024746, 31676475535509475, 752633551945067097470, 18627509719518121995003486, 474204125641606160260805604468, 12323377272130975561953028453412931, 325337163371714764552775702345400136950, 8696262375383068237957170325229215635055690
Offset: 1
Keywords
Examples
a(1) = 7321 since ((-1)^0*(39480*0+7321)*29700^(1-1-0)*T_0(14,1)*T_0(11,-11)^2)/1 = 7321.
Links
- Zhi-Wei Sun, Table of n, a(n) for n = 1..40
- Zhi-Wei Sun, List of conjectural series for powers of Pi and other constants, arXiv:1102.5649 [math.CA], 2011-2014.
- Zhi-Wei Sun, Congruences involving generalized central trinomial coefficients, Sci. China Math. 57(2014), no.7, 1375-1400.
- Zhi-Wei Sun, On sums related to central binomial and trinomial coefficients, in: M. B. Nathanson (ed.), Combinatorial and Additive Number Theory: CANT 2011 and 2012, Springer Proc. in Math. & Stat., Vol. 101, Springer, New York, 2014, pp. 257-312. Also available from arXiv:1101.0600 [math.NT], 2011-2014.
Programs
-
Mathematica
T[b_,c_,0]=1; T[b_,c_,1]=b; T[b_,c_,n_]:=T[b,c,n]=(b(2n-1)T[b,c,n-1]-(b^2-4c)(n-1)T[b,c,n-2])/n; a[n_]:=a[n]=Sum[(39480k+7321)T[14,1,k]T[11,-11,k]^2*(-1)^k*29700^(n-1-k),{k,0,n-1}]/n; Table[a[n],{n,1,10}]
Comments