login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

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