A104837 Primes from merging of 17 successive digits in decimal expansion of Pi.
89793238462643383, 79323846264338327, 33832795028841971, 79502884197169399, 48086513282306647, 46095505822317253, 81284811174502841, 74881520920962829, 52092096282925409
Offset: 1
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..1000
Programs
-
Mathematica
With[{pi = FromDigits/@Partition[RealDigits[Pi, 10, 800][[1]], 17, 1]}, Select[pi, PrimeQ]] (* Vincenzo Librandi, Apr 21 2013 *)