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.

A355060 Perfect powers whose digits are in strictly increasing order.

Original entry on oeis.org

4, 8, 9, 16, 25, 27, 36, 49, 125, 128, 169, 256, 289, 1369, 13456, 13689, 134689
Offset: 1

Views

Author

Jon E. Schoenfield, Jun 16 2022

Keywords

Comments

I.e., numbers of the form b^k with b > 1 and k > 1 in whose base-10 expansion each digit is greater than the previous digit.

Crossrefs

Programs

  • Mathematica
    perfectPowerQ[n_] := GCD @@ FactorInteger[n][[All, 2]] > 1; (* A001597 *) Select[Range[135000], perfectPowerQ[#] && AllTrue[Differences[IntegerDigits[#]],Positive] &] (* Stefano Spezia, Jul 01 2025 *)