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!)
A284760 a(n) = Sum_{i=1..n-1}(i^(n-2)) mod n^4. 2
0, 1, 3, 14, 100, 979, 196, 500, 3834, 1333, 2178, 1022, 16731, 12647, 42420, 23912, 23409, 26265, 15162, 79730, 84441, 21723, 28566, 160732, 280625, 329405, 137295, 569702, 74849, 71999, 463202, 715984, 247665, 31873, 1302420, 574170, 807710, 225091, 1377129 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
Mestrovic conjectures that a(n) > 0 for all n > 1 (Conjecture 2.11).
LINKS
FORMULA
a(n) = A076015(n-1) modulo n^4.
EXAMPLE
For n=5 the sum is 1^3 + 2^3 + 3^3 + 4^3 = 1 + 8 + 27 + 64 = 100; the modulus is 5^4 = 625. So a(5) = 100 mod 625 = 100. - Peter Munn, May 01 2017
MATHEMATICA
Table[Mod[Sum[i^(n - 2), {i, n - 1}], n^4], {n, 39}] (* Michael De Vlieger, Apr 05 2017 *)
PROG
(PARI) a(n) = lift(Mod(sum(i=1, n-1, i^(n-2)), n^4))
(PARI) a(n)=my(m=n^4, e=n-2); lift(sum(i=1, n-1, Mod(i, m)^e)) \\ Charles R Greathouse IV, Apr 07 2017
CROSSREFS
Sequence in context: A132008 A140963 A284759 * A076015 A004659 A054202
KEYWORD
nonn
AUTHOR
Felix Fröhlich, Apr 02 2017
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 9 23:31 EDT 2024. Contains 375044 sequences. (Running on oeis4.)