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!)
A123748 Denominators of partial sums of a series for sqrt(5). 6
1, 5, 25, 5, 125, 3125, 15625, 78125, 78125, 390625, 9765625, 48828125, 244140625, 244140625, 78125, 6103515625, 30517578125, 152587890625, 152587890625, 762939453125, 19073486328125, 95367431640625, 476837158203125 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Denominators of sums over central binomial coefficients scaled by powers of 5.
Numerators are given by A123747.
For the rationals r(n) see the W. Lang link under A123747.
LINKS
FORMULA
a(n) = denominator(r(n)) with the rationals r(n) = Sum_{k=0..n} binomial(2*k,k)/5^k in lowest terms.
r(n) = Sum_{k=0..n} (((2*k-1)!!/((2*k)!!)*(4/5)^k, n>=0, with the double factorials A001147 and A000165.
EXAMPLE
a(3)=5 because r(3)= 1+2/5+6/25+4/25 = 9/5 = A123747(3)/a(3).
MAPLE
A123748:=n-> denom(sum(binomial(2*k, k)/5^k, k=0..n)); seq(A123748(n), n=0..25); # G. C. Greubel, Aug 10 2019
MATHEMATICA
Table[Denominator[Sum[Binomial[2*k, k]/5^k, {k, 0, n}]], {n, 0, 25}] (* G. C. Greubel, Aug 10 2019 *)
PROG
(PARI) vector(25, n, n--; denominator(sum(k=0, n, binomial(2*k, k)/5^k))) \\ G. C. Greubel, Aug 10 2019
(Magma) [Denominator( (&+[Binomial(2*k, k)/5^k: k in [0..n]])): n in [0..25]]; // G. C. Greubel, Aug 10 2019
(Sage) [denominator( sum(binomial(2*k, k)/5^k for k in (0..n)) ) for n in (0..25)] # G. C. Greubel, Aug 10 2019
(GAP) List([0..25], n-> DenominatorRat(Sum([0..n], k-> Binomial(2*k, k)/5^k )) ); # G. C. Greubel, Aug 10 2019
CROSSREFS
Sequence in context: A346994 A070387 A331272 * A050108 A070386 A050084
KEYWORD
nonn,frac,easy
AUTHOR
Wolfdieter Lang, Nov 10 2006
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 25 16:45 EDT 2024. Contains 371989 sequences. (Running on oeis4.)