A104828 Primes from merging of 8 successive digits in decimal expansion of Pi allowing leading zeros.
28841971, 41971693, 82534211, 42117067, 30664709, 5822317, 31725359, 49303819, 75648233, 37867831, 71201909, 48566923, 26648213, 13393607, 25409171, 1133053, 9433057
Offset: 1
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..1000
Programs
-
Mathematica
With[{pi = FromDigits/@Partition[RealDigits[Pi, 10, 500][[1]], 8, 1]}, Select[pi, PrimeQ]] (* Vincenzo Librandi, Apr 21 2013 *)
Comments