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.

Showing 1-2 of 2 results.

A125193 Smallest prime p such that p^2 divides the numerator of generalized harmonic number H((p-1)/2,2n) = Sum[ 1/k^(2n), {k,1,(p-1)/2} ].

Original entry on oeis.org

7, 31, 127, 7, 5, 8191, 7, 2591, 149, 7, 11, 31, 7, 7, 5, 7, 17, 223, 7, 37, 431, 7, 23, 127, 5, 13, 23, 7, 29, 547, 7, 31, 11, 7, 5, 59, 7, 19, 13, 7, 41, 31, 7, 11, 5, 7, 31, 2371, 7
Offset: 1

Views

Author

Alexander Adamchuk, Jan 13 2007

Keywords

Comments

Generalized harmonic number is H(n,m)= Sum[ 1/k^m, {k,1,n} ].
For prime p>3, p^2 divides H((p-1)/2,2p), implying that a(p)<=p. a(p)=p for prime p in {5,7,11,17,23,29,41,53,59,83,89,101,113,131,...}.
Note that many a(n) are of the form 2^m - 1 (for example, a(1) = 7, a(2) = 31, a(3) = 127, a(6) = 8191, etc.). a(n) = 5 for n = 5 + 10k, where k = {1,2,3,4,5,6,7,...}. a(n) = 7 for n = 1 + 3k, where k = {1,2,3,4,5,6,7,9,10,11,12,13,14,15,16,17,19,20,...}. a(n) = 31 for n = 2 + 5k, where k = {2,6,8,9,12,14,...}.
a(50) > 3*10^6.
a(51)-a(62) = {17,7,53,131,5,7,19,7,59,23,7,31}. a(64)-a(77) = {7,5,11,7,17,23,7,23,31,7,37,5,7,7}. a(79)-a(119) = {7,47,263,7,83,2543,5,43,29,7,89,103,7,23,23,7,5,16193,7,7,11,7,101,17,7,13,5,7,31,127,7,37,37,7,113,19,5,29,13,7,7}. a(121)-a(150) = {7,31,41,7,5,23,7,37,43,7,131,11,7,67,5,7,23,23,7,7,47,7,11,1847,5,37,31,7,47,127}.
Currently a(n) is unknown for n = {50,63,78,120,...}.

Crossrefs

Cf. A120290.

Extensions

a(48), a(84), a(96), a(144) from Max Alekseyev, Sep 12 2009

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

Original entry on oeis.org

41, 1599366601, 10877829357646990581304675244472669289, 100935935338172297894217692920950359818733561, 9217176064595104612826996436899733706027947436610177335077693637792069056822883934927465549747441
Offset: 3

Views

Author

Alexander Adamchuk, Jan 13 2007

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 (see A120290(n)). The numerator of generalized harmonic number H((p-1)/2,2p) is divisible by p^2 for prime p>3.

Examples

			Prime[3] = 5.
a(3) = Numerator[ 1 + 1/2^10 ] / 5^2 = 1025 / 25 = 41.
		

Crossrefs

Programs

  • Mathematica
    Do[p=Prime[k];f=0;Do[f=f+1/n^(2p);g=Numerator[f];If[IntegerQ[g/(p)^2],Print[{p,g/p^2}]],{n,1,(p-1)/2}],{k,1,100}]

Formula

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