(Translated by https://www.hiragana.jp/)
A055031 - OEIS
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!)
A055031 Numerator of (Sum(m^(n-1),m=1..n-1)+1)/n. 6
1, 1, 2, 37, 71, 2213, 9596, 1200305, 24684613, 287152493, 1355849266, 427675990237, 1032458258547, 228796942438201, 16841089312342856, 665478473553144001, 1653031004194447737, 631449646252135295657, 3167496749732497119310 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
REFERENCES
R. K. Guy, Unsolved Problems Number Theory, A17.
LINKS
MATHEMATICA
Table[Numerator[(Sum[m^(n - 1), {m, n - 1}] + 1)/n], {n, 50}] (* Indranil Ghosh, May 17 2017 *)
PROG
(PARI) a(n) = numerator((sum(m=1, n - 1, m^(n - 1)) + 1)/n); \\ Indranil Ghosh, May 17 2017
(Python)
from sympy import Integer
def a(n): return ((sum(m**(n - 1) for m in range(1, n)) + 1)/Integer(n)).numerator() # Indranil Ghosh, May 17 2017
CROSSREFS
Sequence in context: A282639 A099533 A107752 * A041161 A106947 A309429
KEYWORD
nonn,frac
AUTHOR
N. J. A. Sloane, Jun 11 2000
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 August 1 02:20 EDT 2024. Contains 374809 sequences. (Running on oeis4.)