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.

Showing 1-3 of 3 results.

A077271 Duplicate of A072037.

Original entry on oeis.org

4, 8, 9, 121, 343, 1331, 10201, 14641, 94249, 1030301, 104060401
Offset: 1

Views

Author

Keywords

A084093 Prime power decimal palindromes that are not prime.

Original entry on oeis.org

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

Views

Author

Reinhard Zumkeller, May 11 2003

Keywords

Comments

A084092 without A002385.
a(n) = A072037(n-1) for n > 1. - Georg Fischer, Oct 19 2018

Examples

			a(9)=14641=11^4; a(10)=94249=307^2=A000040(63)^2;
a(11)=1030301=101^3=A000040(26)^3.
		

Crossrefs

Extensions

a(13)-a(17) from Donovan Johnson, Feb 22 2008
Missing term 104060401 added by Donovan Johnson, Jul 02 2011

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
Showing 1-3 of 3 results.