A238163 a(n) is the nearest integer to 8*(2*n+1)! * Bernoulli(2*n,1/2).
8, -4, 28, -930, 96012, -24144750, 12602990070, -12203470904625, 20180112406353900, -53495387545025175750, 216267236072968468547250, -1280630367874799320798794375, 10743714652441927865738713818750, -124178158916511109662405449217796875
Offset: 0
Keywords
Links
Programs
-
Mathematica
a[n_] := Round[ (2 n + 1)! 8 BernoulliB[2 n, 1/2]]; Array[a, 14, 0] (* Robert G. Wilson v, Feb 17 2014 *)
-
PARI
A238163=n->round(8*(2*n+1)!*subst(bernpol(2*n,x),x,1/2)) \\ M. F. Hasler, Feb 16 2014
Comments