login
A048796
Palindromic primes formed from decimal expansion of Pi written backwards then forwards.
4
3, 131, 32397985356295141314159265358979323
OFFSET
1,1
COMMENTS
The next term 729096599629...1413141...926995690927 has 2971 digits. - Metin Sariyar, Jul 07 2020
LINKS
Chris K. Caldwell and G. L. Honaker, Jr., Prime Curios! 729...927 (2971-digits)
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 *)
CROSSREFS
KEYWORD
base,nonn,bref
STATUS
approved