A229155 Number of digits of the n-th term of the decimal expansion of e = exp(1) cut into chunks of primes.
1, 1, 649, 1, 1, 2, 29, 1, 1, 2, 1, 1, 1, 53, 1872, 3, 5
Offset: 1
Links
- Joseph L. Pe, Trying to Write e as a Concatenation of Primes (2009)
Programs
-
PARI
default(realprecision,2000);c=exp(1)/10;for(k=1,9e9,ispseudoprime(c\.1^k) & !print1(k,",") & k=0*c=frac(c*10^k))
Extensions
a(15)-a(17) from Jinyuan Wang, Mar 26 2020
Comments