A048796 Palindromic primes formed from decimal expansion of Pi written backwards then forwards.
3, 131, 32397985356295141314159265358979323
Offset: 1
Links
- Chris K. Caldwell and G. L. Honaker, Jr., Prime Curios! 729...927 (2971-digits)
- Shyam Sunder Gupta, Mystery of pi, Exploring the Beauty of Fascinating Numbers, Springer (2025) Ch. 19, 473-497.
Programs
-
Mathematica
l={};Do[a=Floor[Pi*10^n];r=IntegerReverse[a];r2=Floor[r/10];c=FromDigits[Flatten[IntegerDigits/@Join[r2,a]]]; If[PrimeQ[c],AppendTo[l, c]],{n,0,100}];l (* Metin Sariyar, Jul 07 2020 *)
Comments