A224270 Absolute values of the numerators of the third column of ( 0 followed by (interleave 0 , A001803(n))/A060818(n) ) and its successive differences.
1, 1, 5, 11, 95, 203, 861, 1815, 30459, 63635, 264979, 550069, 4555915, 9412543, 38816525, 79898895, 2627302995, 5392044675, 22104436695, 45256266825, 370241638305, 756514878405, 3088866211275, 6300861570705, 102746354288175, 209286947903319
Offset: 0
Examples
a(n)=numerators of 0+1=1, 0+1/2=1/2, 1/4+3/8=5/8, 3/8+5/16=11/16, 15/32+35/128=95/128,... .
Links
- Vincenzo Librandi, Table of n, a(n) for n = 0..200
Programs
-
Mathematica
nmax = 25; t1 = Table[ Numerator[ (2*n+1)*(Binomial[2*n, n]/4^n)] / Denominator[ Binomial[2*n, n]/4^n], {n, 0, Ceiling[nmax/2]}]; t2 = Join[{0}, Table[ If[ OddQ[n], 0, t1[[n/2]] ], {n, 1, nmax+2}] ]; t3 = Table[ Differences[t2, n], {n, 0, nmax}]; t3[[All, 3]] // Numerator // Abs (* Jean-François Alcover, Apr 02 2013 *)
Extensions
More terms from Jean-François Alcover, Apr 02 2013
Comments