A176250 Numerators of the fractions defined by 2 minus partial sums of the "original" Bernoulli numbers.
2, 1, 1, 1, 1, 11, 11, 12, 12, 79, 79, 347, 347, 5541, 5541, -9206, -9206, 3307613, 3307613, -78393123, -78393123, 932396477, 932396477, -127419293864, -127419293864, 6013748071263, 6013748071263
Offset: 0
Programs
-
Maple
B := proc(n) if n = 1 then -bernoulli(n); else bernoulli(n); end if; end proc: A176250 := proc(n) 2-add(B(i),i=0..n-1) ; numer(%) ;end proc: seq(A176250(n),n=0..40) ; # R. J. Mathar, Jun 01 2011
Comments