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!)
A186208 The first n-digit prime in the decimal expansion of 1/e. 1
3, 67, 367, 7879, 36787, 367879, 8794411, 21595523, 867445811, 2159552377, 23215955237, 794411714423, 9441171442321, 57147274345919, 767834507836801, 4581113103176783, 67834507836801697, 595523770161460867, 3176783450783680169 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
1/e = 0.36787944117144232159....
LINKS
MAPLE
Digits := 10000: p0 := evalf(1/exp(1))*10:for d from 1 to 20 do: id:=0:for
i from 0 to 50000 while(id=0) do :q0:=trunc(p0*10^(i+d-1)): x:= irem(q0, 10^d):
if type(x, prime)=true and length(x)=d then printf(`%d, `, x):id:=1: else fi:od:od:
MATHEMATICA
With[{x=RealDigits[1/E, 10, 1000][[1]]}, Table[FromDigits[ First[ Select[ Partition[x, n, 1], PrimeQ[FromDigits[#]]&]]], {n, 20}]] (* Harvey P. Dale, Feb 17 2011 *)
CROSSREFS
Sequence in context: A201857 A294395 A342505 * A217625 A238316 A182367
KEYWORD
nonn,base
AUTHOR
Michel Lagneau, Feb 15 2011
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 16:34 EDT 2024. Contains 371961 sequences. (Running on oeis4.)