cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A048796 Palindromic primes formed from decimal expansion of Pi written backwards then forwards.

Original entry on oeis.org

3, 131, 32397985356295141314159265358979323
Offset: 1

Views

Author

Keywords

Comments

The next term 729096599629...1413141...926995690927 has 2971 digits. - Metin Sariyar, Jul 07 2020

Crossrefs

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 *)