A039954 Palindromic primes formed from the reflected decimal expansion of Pi.
3, 313, 31415926535897932384626433833462648323979853562951413
Offset: 1
Links
- C. K. Caldwell and G. L. Honaker, Jr., Prime Curios!, 31414...51413 (53-digits)
- Shyam Sunder Gupta, Mystery of pi, Exploring the Beauty of Fascinating Numbers, Springer (2025) Ch. 19, 473-497.
- Eric Weisstein's World of Mathematics, Palindromic Prime.
Programs
-
Mathematica
Select[Table[p = Flatten[RealDigits[Pi, 10, d]]; (FromDigits[p] - 1)*10^(Length[p] - 3) + FromDigits[Drop[Reverse[p], 2]], {d, 27}], PrimeQ] (* Arkadiusz Wesolowski, Dec 18 2011 *)
Comments