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!)
A212296 a(n) = numerator(1 + Sum_{k=1..n} n^2 / Product_{j=1..k} 4*j^2). 2
5, 33, 869, 48449, 1504375, 124787549, 119224713221, 10003972882859, 9610660732622149, 3811875515172994001, 40741092389313992153, 1050927826884051298685761, 707754011714996709527574437, 184405400463251288725766546203, 496687160874729261988243149308101 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
Charles R Greathouse IV, Table of n, a(n) for n = 1..225
EXAMPLE
r(n) = 5/4, 33/16, 869/256, 48449/9216, 1504375/196608, 124787549/11796480, ....
From Petros Hadjicostas, Sep 26 2019: (Start)
a(3) = numerator(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)) = numerator(1 + 9/4 + 9/64 + 9/2304) = numerator(869/256) = 869.
a(4) = numerator(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)) = numerator(1 + 16/4 + 16/64 + 16/2304 + 16/147456) = denominator(48449/9216) = 48449.
(End)
MAPLE
a := n -> numer(1 + add(n^2 / mul(4*j^2, j=1..k), k=1..n)):
seq(a(n), n=1..15); # Peter Luschny, Sep 26 2019
MATHEMATICA
G[n_] := Module[{N=1, D=1}, Sum[N*=2*k-1; D*=2*k; (n/D)^2, {k, 1, n}] + 1]; a[n_] := Numerator[G[n]]; Array[a, 15] (* Jean-François Alcover, Sep 05 2015, translated from PARI *)
PROG
(PARI) G(n)=my(N=1, D=1); sum(k=1, n, N*=2*k-1; D*=2*k; (n/D)^2)+1
a(n)=numerator(G(n))
vector(15, n, a(n))
CROSSREFS
Denominators are A212297.
Sequence in context: A295090 A350876 A268296 * A276160 A145505 A276126
KEYWORD
nonn,frac
AUTHOR
EXTENSIONS
Redefinition according to the data by Peter Luschny, Sep 26 2019
STATUS
approved

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 20 02:13 EDT 2024. Contains 371798 sequences. (Running on oeis4.)