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.

A076703 Palindromic prime powers of prime numbers.

Original entry on oeis.org

4, 8, 9, 121, 343, 1331, 10201, 94249, 1030301, 900075181570009, 10022212521222001, 12124434743442121, 12323244744232321, 12341234943214321
Offset: 1

Views

Author

Zak Seidov, Oct 26 2002

Keywords

Comments

Up to 10^14, there are only 9 palindromic prime powers of prime numbers.

Crossrefs

Cf. A053810, A075308, subset of A072037.

Programs

  • Mathematica
    a = {}; Do[pp = Prime[n]^Prime[i]; d = IntegerDigits[pp]; If[d == Reverse[d], a = Append[a, pp]], {n, 1, PrimePi[ Sqrt[10^21]]}, {i, 1, PrimePi[ Floor[ Log[ Prime[n], 10^21]]]}]; Sort[a]

Extensions

Edited and corrected by Robert G. Wilson v, Oct 31 2002