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!)
A119380 Remainder when the integer part of e^n is divided by the n-th prime number. 1
0, 1, 0, 5, 5, 0, 8, 16, 7, 15, 13, 28, 23, 23, 26, 24, 57, 57, 62, 43, 70, 49, 36, 64, 84, 3, 4, 64, 83, 103, 45, 53, 49, 37, 26, 19, 75, 20, 147, 20, 134, 73, 56, 17, 31, 89, 143, 200, 103, 170, 25, 37, 159, 181, 90, 242, 16, 93, 222, 163, 57, 132, 214, 71, 164, 57, 62, 14 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,4
LINKS
FORMULA
a(n) = floor(e^n) mod prime(n).
EXAMPLE
The sixth term is 0 because e^6 is 403.42879... and 403 is a multiple of 13, the sixth prime.
MAPLE
A119380:=n->floor(exp(1)^n) mod ithprime(n): seq(A119380(n), n=1..100); # Wesley Ivan Hurt, Nov 30 2017
MATHEMATICA
Table[Mod[Floor[E^n], Prime[n]], {n, 1, 100}] (* Stefan Steinerberger, Jul 26 2006 *)
PROG
(PARI) a(n) = floor(exp(n))%prime(n) \\ Iain Fox, Nov 30 2017
CROSSREFS
Cf. A000149.
Sequence in context: A200516 A233383 A144184 * A121212 A182787 A133337
KEYWORD
easy,nonn,less
AUTHOR
Axel Harvey, Jul 24 2006
EXTENSIONS
More terms from Stefan Steinerberger, Jul 26 2006
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 24 08:56 EDT 2024. Contains 371934 sequences. (Running on oeis4.)