A246542 a(n) = 2/n^2*( sum_{k=0..n-1} (2*k+1)*C(n-1,k)^2*C(n+k,k) ), where C(m,k) denotes the binomial coefficient m!/(k!*(m-k)!).
2, 5, 22, 132, 918, 6981, 56390, 475796, 4149286, 37133043, 339307098, 3154030050, 29741815998, 283896719073, 2738445478758, 26656533873204, 261561469613190, 2584718580416919, 25703179602581234, 257046296680889600, 2583719988283365322, 26090463844931102715, 264570229302222957162, 2693187696469413499902, 27511970457139362253598
Offset: 1
Keywords
Examples
a(2) = 5 since 2/2^2*( sum_{k=0,1} (2k+1)*C(1,k)^2*C(2+k,k) ) = 1/2*(1+3*3) = 5.
Links
- Zhi-Wei Sun, Table of n, a(n) for n = 1..150
- Zhi-Wei Sun, Two new kinds of numbers and related divisibility results, arXiv:1408.5381, 2014.
Programs
-
Mathematica
a[n_] := Sum[(2 k + 1)Binomial[n - 1, k]^2 Binomial[n + k, k], {k, 0, n - 1}] 2/n^2 Table[a[n], {n, 1, 25}]
Formula
Recurrence (obtained via the Zeilberger algorithm):
-n*(n-2)*(20*n^2+50*n+29)*a(n) - (220*n^4+550*n^3+369*n^2+59*n-10)*a(n+1)
+ (n+2)^2*(20*n^2+10*n-1)*a(n+2) = 0.
Comments