cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A120269 Numerator of Sum_{k=1..n} 1/(2k-1)^4.

Original entry on oeis.org

1, 82, 51331, 123296356, 9988505461, 146251554055126, 4177234784807204311, 4177316109293528392, 348897735816424941428857, 45469045689642442391390873722, 45469276109166591994111574347
Offset: 1

Views

Author

Alexander Adamchuk, Jul 01 2006

Keywords

Comments

a((p-1)/2) is divisible by prime p > 5.
Denominators are in A128493.
The limit of the rationals r(n) = Sum_{k=1..n} 1/(2k-1)^4, for n -> infinity, is (Pi^4)/96 = (1 - 1/2^4)*zeta(4), which is approximately 1.014678032.
r(n) = (Psi(3, 1/2) - Psi(3, n+1/2))/(3!*2^4) for n >= 1, where Psi(n,k) = Polygamma(n,k) is the n^th derivative of the digamma function. Psi(3, 1/2) = 3!*15*zeta(4) = Pi^4. - Jean-François Alcover, Dec 02 2013

Crossrefs

Programs

  • Magma
    [Numerator((&+[1/(2*k-1)^4: k in [1..n]])): n in [1..20]]; // G. C. Greubel, Aug 23 2018
  • Mathematica
    Numerator[Table[Sum[1/(2k-1)^4,{k,1,n}],{n,1,20}]]
    Table[(PolyGamma[3, 1/2] - PolyGamma[3, n + 1/2])/(3!*2^4) // Simplify // Numerator, {n, 1, 15}] (* Jean-François Alcover, Dec 02 2013 *)
  • PARI
    for(n=1,20, print1(numerator(sum(k=1,n, 1/(2*k-1)^4)), ", ")) \\ G. C. Greubel, Aug 23 2018