A104848 Primes from merging of 7 successive digits in decimal expansion of e.
2718281, 6028747, 2497757, 5354759, 4759457, 7594571, 5945713, 7138217, 3059921, 9921817, 6059563, 6307381, 3073813, 9525101, 5251019, 4089149, 8914993, 9348841, 4167509, 7774499, 8606261, 2613313, 5830007, 1274437
Offset: 1
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..1000
Programs
-
Mathematica
With[{len=7},FromDigits/@Select[Partition[RealDigits[E,10,1000][[1]], len,1],PrimeQ[FromDigits[#]]&&IntegerLength[FromDigits[#]]==len&]] (* Harvey P. Dale, Oct 23 2011 *)
Extensions
Offset changed from 0 to 1 by Vincenzo Librandi, Apr 19 2013
Comments