A172194 Numerators of the inverse binomial transform of the sequence of fractions A172030(n)/A172031(n).
0, 1, 1, 2, 2, 19, 19, 23, 23, 131, 131, 808, 808, 4469, 4469, 24221, 24221, -2797103, -2797103, 80009738, 80009738, -930456539, -930456539, 127441603151, 127441603151, -6013673706973, -6013673706973, 149990847412508, 149990847412508
Offset: 0
Programs
-
Maple
c := proc(n) option remember; if n <=1 then n; elif n = 2 then 2*procname(n-1)-bernoulli(n-1) ; else 2*procname(n-1)+bernoulli(n-1) ; end if; end proc: L := [seq(c(n),n=0..30)] ; read("transforms") ; BINOMIALi(L) ; apply(numer,%) ; # R. J. Mathar, Dec 21 2010
Comments