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!)
A087454 Multiplicative inverse of the n-th prime prime(n) modulo prime(n-1). 2
1, 2, 3, 2, 6, 10, 9, 5, 4, 15, 26, 28, 21, 11, 8, 9, 30, 51, 17, 36, 61, 20, 14, 78, 73, 51, 26, 54, 82, 105, 32, 22, 69, 14, 75, 126, 131, 41, 28, 29, 90, 163, 96, 145, 99, 83, 88, 56, 114, 172, 39, 120, 217, 42, 43, 44, 135, 226, 208, 141, 85, 21, 77, 156, 235, 68, 276 (list; graph; refs; listen; history; text; internal format)
OFFSET
2,2
LINKS
Charles R Greathouse IV, Table of n, a(n) for n = 2..10000
EXAMPLE
We have a(7) = 10 because prime(7)*10 = 170 = 1 [mod 13] = 1 [mod prime(6)].
MAPLE
seq(`mod`(1/ithprime(n), ithprime(n-1)), n = 2..70); # G. C. Greubel, Aug 09 2019
MATHEMATICA
Table[PowerMod[Prime[n], -1, Prime[n - 1]], {n, 2, 68}] (* Geoffrey Critzer, May 16 2015 *)
PROG
(PARI) a(n)=my(p=prime(n-1), g=nextprime(p+1)-p); lift(Mod(1/g, p)) \\ Charles R Greathouse IV, Aug 23 2011
(Magma) [InverseMod(NthPrime(n), NthPrime(n-1)): n in [2..70]]; // G. C. Greubel, Aug 09 2019
(Sage) [nth_prime(n).inverse_mod(nth_prime(n-1)) for n in (2..70)] # G. C. Greubel, Aug 09 2019
CROSSREFS
Sequence in context: A153984 A025502 A110777 * A059446 A298854 A355266
KEYWORD
nonn,look
AUTHOR
Lekraj Beedassy, Oct 23 2003
EXTENSIONS
Corrected and extended by Ray Chandler, Oct 24 2003
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 May 2 12:49 EDT 2024. Contains 372196 sequences. (Running on oeis4.)