OFFSET
0,3
COMMENTS
The array is
0, 0, 1, 0, 3/2, 0, 15/8, 0,...
0, 1, -1, 3/2, -3/2, 15/8, -15/8,...
1, -2, 5/2, -3, 27/8, -15/4,...
-3, 9/2, -11/2, 51/8, -57/8,...
15/2, -10, 95/8, -27/2,...
-35/2, 175/8, -203/8,...
315/8, -189/4,...
-693/8,...
Now consider a(n)/A046161(n) and its differences:
1, 1/2, 5/8, 11/16, 95/128, 203/256, 861/1024,...
-1/2, 1/8, 1/16, 7/128, 13/256, 49/1024,... =b(n)/A046161(n)
5/8, -1/16, -1/128, -1/256, -3/1024,...
-11/16, 7/128, 1/256, 1/1024,...
95/128, -13/256, -3/1024,...
-203/256, 49/1024,...
861/1024,...
This an autosequence of second kind. The first column is the signed sequence.
(Its companion, the corresponding autosequence of first kind, is 0, 1, 1, 9/8, 5/4,... in A206771).
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..200
EXAMPLE
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,... .
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 *)
CROSSREFS
KEYWORD
nonn,frac,less
AUTHOR
Paul Curtz, Apr 02 2013
EXTENSIONS
More terms from Jean-François Alcover, Apr 02 2013
STATUS
approved