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!)
A216160 2^(2p-2) modulo p^3 for p=odd primes. 1
16, 6, 323, 1079, 924, 3044, 6252, 254, 21084, 4217, 42514, 48955, 63168, 101333, 90896, 87970, 164396, 100099, 85982, 221337, 464837, 90637, 214936, 735552, 171600, 330425, 437845, 311632, 363522, 1972311, 38777, 202213, 414082, 1471674, 860550, 346186 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
2^(4*n) == (-1)^n*(2n)!/(n!)^2 (modulo p^3) (with n = (p-1)/2) for odd primes. Except for p = 3 (n = 1), where the second expression = 25 instead of 16.
LINKS
F. Morley, Note on the Congruence 2^4n == (-1)^n*(2n)!/(n!)^2 where 2n+1 is a prime, Annals of Mathematics, Vol. 9 (1894 - 1895), pp. 168-170.
MAPLE
a:= proc(n) local p; p:= ithprime(n+1);
2 &^ (2*p-2) mod p^3
end:
seq (a(n), n=1..50); # Alois P. Heinz, Sep 05 2012
MATHEMATICA
Table[Mod[2^(2Prime[n] - 2), Prime[n]^3], {n, 2, 30}] (* Alonso del Arte, Sep 03 2012 *)
PROG
(PARI) a(n) = { local(p); p = prime(n+1); return (2^(2*p-2) % (p^3)); }
CROSSREFS
Cf. A065091.
Sequence in context: A057964 A302463 A303245 * A302371 A303087 A302892
KEYWORD
nonn
AUTHOR
Michel Marcus, Sep 03 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 22:18 EDT 2024. Contains 371782 sequences. (Running on oeis4.)