The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A212297 a(n) = denominator(1 + Sum_{k=1..n} n^2 / Product_{j=1..k} 4*j^2). 3

%I #38 Sep 27 2019 06:30:14

%S 4,16,256,9216,196608,11796480,8493465600,554906419200,

%T 426168129945600,138078474102374400,1227364214243328000,

%U 26731992586219683840000,15397627729662537891840000,3469598781750625204961280000,8160496334677470482068930560000

%N a(n) = denominator(1 + Sum_{k=1..n} n^2 / Product_{j=1..k} 4*j^2).

%H Charles R Greathouse IV, <a href="/A212297/b212297.txt">Table of n, a(n) for n = 1..225</a>

%e r(n) = 5/4, 33/16, 869/256, 48449/9216, 1504375/196608, 124787549/11796480, ....

%e From _Petros Hadjicostas_, Sep 26 2019: (Start)

%e a(3) = denominator(1 + 3^2/(4*1^2) + 3^2/(4*1^2 * 4*2^2) + 3^2/(4*1^2 * 4*2^2 * 4*3^2)) = denominator(1 + 9/4 + 9/64 + 9/2304) = denominator(869/256) = 256.

%e a(4) = denominator(1 + 4^2/(4*1^2) + 4^2/(4*1^2 * 4*2^2) + 4^2/(4*1^2 * 4*2^2 * 4*3^2) + 4^2/(4*1^2 * 4*2^2 * 4*3^2 * 4*4^2)) = denominator(1 + 16/4 + 16/64 + 16/2304 + 16/147456) = denominator(48449/9216) = 9216.

%e (End)

%p a := n -> denom(1 + add(n^2 / mul(4*j^2, j=1..k), k=1..n)):

%p seq(a(n), n=1..15); # _Peter Luschny_, Sep 26 2019

%t G[n_] := Module[{N=1, D=1}, Sum[N*=2*k-1; D*=2*k; (n/D)^2, {k, 1, n}] + 1]; a[n_] := Denominator[G[n]]; Array[a, 15] (* _Jean-François Alcover_, Sep 05 2015, translated from PARI *)

%o (PARI) G(n)=my(N=1,D=1);sum(k=1,n,N*=2*k-1;D*=2*k;(n/D)^2)+1

%o a(n)=denominator(G(n))

%o vector(15, n, a(n))

%Y Numerators are A212296.

%K nonn,frac

%O 1,1

%A _Charles R Greathouse IV_, Jul 02 2012

%E Redefinition according to the data by _Peter Luschny_, Sep 26 2019

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 June 16 08:45 EDT 2024. Contains 373424 sequences. (Running on oeis4.)