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.

A219550 Sum(m^p, m=1..p-1)/p as p runs through the odd primes.

Original entry on oeis.org

3, 260, 53823, 12942210875, 11901444483396, 25627001801054931008, 55413915436873048932459, 490667517005738962388828685983, 48588952813858892791005036793649985985124, 303307728036900627681487165427498812641117375, 158544898951978777519612048992784361843596346824881328548
Offset: 1

Views

Author

Jonathan Sondow, Dec 04 2012

Keywords

Comments

Always an integer: for an elementary proof that Sum(m^k,m=1..p-1)/p is an integer if p is prime and p-1 does not divide k (and a discussion of other proofs), see MacMillan and Sondow 2011. Applications are in Sondow and MacMillan 2011.
For (Sum(m^(p-1), m=1..p-1)+1)/p as p runs through the primes, see A055030.
For Sum(m^p, m=1..p-1) / p^2 as p runs through the odd primes, see A294507.

Examples

			a(1) = (1^3 + 2^3)/3 = (1 + 8)/3 = 3.
		

Crossrefs

Programs

  • Mathematica
    Array[Sum[m^#, {m, # - 1}]/# &@ Prime@ # &, 11, 2] (* Michael De Vlieger, Nov 04 2017 *)