A104839 Primes from merging of 19 successive digits in decimal expansion of Pi.
3832795028841971693, 9716939937510582097, 348253421170679821, 4461284756482337867, 8233786783165271201, 3486104543266482133, 917153643678925903, 3643678925903600113, 9218611738193261179
Offset: 1
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..1000
Programs
-
Mathematica
With[{pi = FromDigits/@Partition[RealDigits[Pi, 10, 900][[1]], 19, 1]}, Select[pi, PrimeQ]] (* Vincenzo Librandi, Apr 21 2013 *)