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.

A120290 Numerator of generalized harmonic number H(p-1,2p)= Sum[ 1/k^(2p), {k,1,p-1}] divided by p^2 for prime p>3.

Original entry on oeis.org

2479157521, 159936660724017234488561, 1119583852472161859174156302552583713828739479026834819554843860744244189
Offset: 3

Views

Author

Alexander Adamchuk, Jul 08 2006

Keywords

Comments

Generalized harmonic number is H(n,m)= Sum[ 1/k^m, {k,1,n} ]. The numerator of generalized harmonic number H(p-1,2p) is divisible by p^2 for prime p>3.

Examples

			With prime(3) = 5, a(3) = numerator[ 1 + 1/2^10 + 1/3^10 + 1/4^10 ] / 5^2 = 61978938025 / 25 = 2479157521.
		

Crossrefs

Programs

  • Mathematica
    Table[Numerator[Sum[1/k^(2*Prime[n]),{k,1,Prime[n]-1}]],{n,3,7}]/Table[Prime[n]^2,{n,3,7}]

Formula

a(n) = numerator[ Sum[ 1/k^(2*Prime[n]), {k,1,Prime[n]-1} ]] / Prime[n]^2 for n>2.