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!)
A219540 a(n) = (n^2 + 2*(Sum_{j = 1..n} j^n)) (mod n^3). 1
0, 6, 0, 20, 0, 26, 0, 200, 567, 950, 0, 1276, 0, 2058, 2475, 784, 0, 3750, 0, 4932, 6615, 4114, 0, 2264, 13125, 3718, 13851, 588, 0, 8050, 0, 19488, 25047, 34102, 1225, 23700, 0, 38266, 41067, 18664, 0, 46622, 0, 53724, 44550, 34914, 0, 72496, 103243, 123750 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
R. Mestrovic conjectures that, for n >= 3, 2*sum(j = 1, n) j^n == -n^2 (mod n^3) implies that n is prime. See proposition 2.2(ii) - the conjecture is proved to be equivalent to Giuga's conjecture.
This proves the first half of Mestrovic's conjecture and hence the first half of Giuga's conjecture : If n>2 is prime, a(n)=0. Proof: [1] [(n-k)^n + k^n] mod n^3 with n odd becomes [2] n^2*k^(n-1) mod n^3. k^(n-1) == 1 mod n if n is prime, so we can write k^(n-1) = 1 + jn. Place this back into [2], we find that [2] is just n^2 mod n^3. From [1] we have (n-1)*n^2 = -n^2 mod n^3. Q.E.D. The second half of Mestrovic's conjecture involves proving that if n is composite then a(n)<>0. It is easy enough to prove a(4k+2)<>0 by noticing that the residue must be even on the RHS, but the residue on the LHS is odd. a(8k+4)<>0 by a similar method. - Jon Perry, Dec 01 2012
LINKS
R. Mestrovic, On a Congruence Modulo n^3 Involving Two Consecutive Sums of Powers, Journal of Integer Sequences, Vol. 17 (2014), 14.8.4.
Eric Weisstein's World of Mathematics, Giuga's Conjecture.
Eric Weisstein's World of Mathematics, Agoh's Conjecture.
Eric Weisstein's World of Mathematics, Fermat's Little Theorem.
Eric Weisstein's World of Mathematics, Giuga Number.
Eric Weisstein's World of Mathematics, Bernoulli Number.
Eric Weisstein's World of Mathematics, Carmichael Number.
EXAMPLE
a(2) = 6 because 2^2 + 2(1^2 + 2^2) = 14 and 14 = 6 mod 2^3.
MATHEMATICA
Table[Mod[n^2 + 2*Sum[j^n, {j, 1, n}], n^3], {n, 100}] (* T. D. Noe, Nov 29 2012 *)
PROG
(PARI) a(n) = (2*sum(j=1, n, j^n) + n^2) % n^3;
CROSSREFS
Sequence in context: A242838 A304878 A167356 * A292497 A082731 A272673
KEYWORD
nonn
AUTHOR
Michel Marcus, Nov 22 2012
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 April 18 09:35 EDT 2024. Contains 371779 sequences. (Running on oeis4.)