login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A264150 Numerators of SGGS((2*n+1)/2^(n+1)) where the rational numbers SGGS(n) are defined in A264148. 2

%I #15 Feb 09 2018 03:19:12

%S 1,-1,1,1,-281,-5221,5459,91207079,-2650986803,-6171801683,

%T 4283933145517,11963983648109,-208697624924077,-29320119130515566117,

%U 2700231121460756431181,10084288256532215186381,-6782242429223267933535073,-51748587106835353426330148693

%N Numerators of SGGS((2*n+1)/2^(n+1)) where the rational numbers SGGS(n) are defined in A264148.

%C See A264148 for definitions and cross-references.

%H G. C. Greubel, <a href="/A264150/b264150.txt">Table of n, a(n) for n = 0..255</a>

%p h := proc(k) option remember; local j; `if`(k<=0, 1,

%p (h(k-1)/k-add((h(k-j)*h(j))/(j+1), j=1..k-1))/(1+1/(k+1))) end:

%p SGGS := n -> h(n)*doublefactorial(n-1):

%p A264150 := n -> numer(SGGS(2*n+1)/2^(n+1)): seq(A264150(n), n=0..17);

%t h[k_]:= h[k] = If[k <= 0, 1, (h[k - 1]/k - Sum[h[k - j]*h[j]/(j + 1), {j, 1, k - 1}])/(1 + 1/(k + 1))]; b[n_] := h[n]*Factorial2[n - 1]; Table[ Numerator[b[2*n + 1]/2^(n + 1)], {n,0,50}] (* _G. C. Greubel_, Feb 08 2018 *)

%Y Cf. A264148, denominators in A065973.

%K sign,frac

%O 0,5

%A _Peter Luschny_, Nov 05 2015

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 07:53 EDT 2024. Contains 371964 sequences. (Running on oeis4.)