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!)
A065977 Numbers k that divide the number formed by the first k decimal digits of e (A039920(k)). 0
1, 9, 13, 15, 220, 1610, 1822, 4879, 61992, 124838, 604739, 771780, 802771, 915973, 918868, 2722883, 3466893 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
MATHEMATICA
d = Drop[ First[ RealDigits[E, 10, 10^5 +1]], 1]; Do[ If[ IntegerQ[ FromDigits[Take[d, n]]/n], Print[n]], {n, 1, 65240} ]
PROG
(Python)
from sympy import E
digits_of_e = str(E.n(13*10**4))[2:] # or load data from file
def afind():
kint = 0
for k in range(1, len(digits_of_e)):
kint *= 10
kint += int(digits_of_e[k-1])
if kint%k == 0: print(k, end=", ")
afind() # Michael S. Branicky, Dec 28 2022
CROSSREFS
Cf. A039920.
Sequence in context: A205851 A294406 A049733 * A294999 A153051 A106636
KEYWORD
nonn,base,more
AUTHOR
Jason Earls, Dec 09 2001
EXTENSIONS
a(9) from Robert G. Wilson v, Dec 10 2001
a(10)-a(17) from Michael S. Branicky, Dec 28 2022
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 19 21:09 EDT 2024. Contains 371798 sequences. (Running on oeis4.)